echo、grep、xargs、sed管道输出例子

test.txt文件

# tsout directory of the contents
onekjloij
akdiel
45983
one234
# boot directory of the contents
weodhsdf
weeet

命令:

echo "# tsout directory of the contents" | xargs -i sed -rn "/{}/,/^#/{/^#/d;p}" test.txt

结果输出

onekjloij
akdiel
45983
one234

将xargs的每项名称,一般是一行一行赋值给 {}。即此处{} 就是# tsout directory of the contents。

sed此处命令是匹配从{}开始到下一个#的所有数据,然后删除匹配数据中医#开头的数据,最后打印出来。

你可能感兴趣的:(linux,运维)