拷贝一个文件到另一个文件
sed -n '/xxxx/w newfile' oldfile
xxx是匹配行
拷贝多行使用-e
sed -n -e '/xxxx1/w newfile' -e '/xxxx2/w newfile' -e '/xxxx3/w newfile' oldfile