man sed 说:
-e script, --expression=script
add the script to the commands to be executed
`-e SCRIPT'
`--expression=SCRIPT'
Add the commands in SCRIPT to the set of commands to be run while
processing the input.
这是什么意思?带 和不带 的 sed 命令有什么区别-e
?
我正在尝试了解 sed
答案1
-e
你可以用sed
一个命令运行多个脚本,例如
sed -e /23/d -e s/foo/bar/
(删除任何包含的行23
并替换foo
为bar
)