jaywcjlove / linux-command

Linux命令大全搜索工具,内容包含Linux命令手册、详解、学习、搜集。https://git.io/linux
https://jaywcjlove.github.io/linux-command
MIT License
31.68k stars 6.1k forks source link

sed命令描述中似乎有错误。 #503

Open catAndZ opened 1 year ago

catAndZ commented 1 year ago

组合多个表达式

利用管道是依次对sed进行操作,sed中写多个表达式是独立执行的

sed '表达式' | sed '表达式'

等价于:

sed '表达式; 表达式'

image

jaywcjlove commented 1 year ago

@catAndZ 已修改更新