Shell文本处理三剑客之sed的使用
sed 是 stream editor 的缩写,流编辑器,主要用于对标准输出或文件进行处理。 语法: stdout | sed [option] pattern command sed [option] pattern command file1 常用选项(option) # -n 只打印静默模式匹配行,而不输出原行 # p 是打印命令 ➜ sed '/hello/p' helloWorld.sh #!/bin/bash HELLO bash echo hello world echo hello world ➜ sed -n '/hello/p' helloWorld
用户评论