2008年10月22日 星期三

Linux 字串取代

Linux中有個字串取代的命令:sed,蠻好用的,正好解決的工作上的一些小問題。


在 file裡的第三行後面加入一行xxx
sed 3axxx file

在 file裡的第三行前面加入一行xxx
sed 3ixxx file

將 file裡的第三行修改為 xxx
sed 3cxxx file

將 file裡的 old-string改為 new-string
sed s/old-string/new-string/g file

沒有留言: