📌  相关文章
📜  从匹配项到文件末尾 - Shell-Bash 代码示例

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

代码示例1
For grepping all lines from match to end of file use onw of following:
sed -n '/matched/,$p' file
awk '/matched/,0' file