博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sed常见操作
阅读量:6509 次
发布时间:2019-06-24

本文共 359 字,大约阅读时间需要 1 分钟。

  1. 打印:
    sed  -n  '/yes/p'  test.txt  #打印test.txt文件中包含yes的行

    sed常见操作

  2. 大小定转换:
    sed  'y/abcdef/ABCDEF/'  test.txt

    sed常见操作

  3. 更改:
    sed  '/BOOTPROTO/c BOOTPROTO=dhcp'  test.txt

    sed常见操作

  4. 替换:
    sed  '/yes/s//no/g'  test.txt

    sed常见操作

  5. 合并文件:
    sed  '$r  test.sh'  test.txt

    sed常见操作

  6. 合并行:
    sed  -n  '/a/N;L'  test.txt

    sed常见操作

  7. 模式空间:
    h|H  加入到模式空间g|G  从模式空间中取出x  交换模式空间和保持空间中的内容

    sed常见操作

 本文转自 Lee_吉 51CTO博客,原文链接:http://blog.51cto.com/12173069/2068368

转载地址:http://ridfo.baihongyu.com/

你可能感兴趣的文章