$ cat testfile #查看testfile 中的内容 HELLO LINUX! Linux is a free unix-type opterating system. This is a linux testfile! Linux test Google Taobao Runoob Tesetfile Wiki
数据的搜寻并显示
搜索 testfile 有 oo 关键字的行:
1 2 3
$ nl testfile | sed -n '/oo/p' 5 Google 7 Runoob
数据的搜寻并删除
删除 testfile 所有包含 oo 的行,其他行输出
1 2 3 4 5 6 7 8
$ nl testfile | sed '/oo/d' 1 HELLO LINUX! 2 Linux is a free unix-type opterating system. 3 This is a linux testfile! 4 Linux test 6 Taobao 8 Tesetfile 9 Wiki