`sed` 命令中的参数 `-e` 起什么作用?

`sed` 命令中的参数 `-e` 起什么作用?

man sed 说:

-e script, --expression=script
          add the script to the commands to be executed

gnu.org 上的描述说:

`-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并替换foobar

相关内容