linux sed

如何用sed直接操作文件并备份

# cat a.txt
one
two
three
# sed -i.bak '/two/d' a.txt    // .bak is the suffix of backup file.
# ls
a.txt a.txt.bak
# cat a.txt
one
three
# cat a.txt.bak
one
two
three

 

如果-i后没有指定suffix, 则不备份文件

posted on 2013-12-18 09:24  lpthread  阅读(171)  评论(0编辑  收藏  举报