sed的用法

    sed 的全称是stream editor.所以该命令是专门用于处理文本流的功能非常全面的工具,

字符替换:

sed 's/old_string/new_string/g' <source_file >new_file

s 的意思是substitute 替换 该命令的意思是将source_file中的old_string 全部替换为new_string,并且输入到新的文件new_file中去;source_file是输入文件流,new_file 是输出文件流;

其他功能待续。。。。。

你可能感兴趣的:(sed的用法)