sed -e '2d' profile
#删除profile文件的第二行
sed -e '/^people/d' profile
#删除profile文件中以people开头的行
1、可以使用追加重定向,比如a.txt b.txtcat a.txt >>b.txt
2、可以使用vim直接读取。如上
vim b.txt
执行: r a.txt
即可读入到b.txt中。
欢迎分享,转载请注明来源:内存溢出
sed -e '2d' profile
#删除profile文件的第二行
sed -e '/^people/d' profile
#删除profile文件中以people开头的行
1、可以使用追加重定向,比如a.txt b.txtcat a.txt >>b.txt
2、可以使用vim直接读取。如上
vim b.txt
执行: r a.txt
即可读入到b.txt中。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)