📜  sed 在匹配前删除行 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:30.406000             🧑  作者: Mango

代码示例1
Use d option at the end of sed command string for deleting line of matches.
tac | sed -i "" "s/matching_pattern/I+1 d" file.txt | tac #