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

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

代码示例1
Use d option at the end of sed command string for deleting line of matches.
sed -i "" "s/matching_pattern/,+1 d" file.txt #+1 defines number of lines
# to delete after matching line