bash – 打印匹配后的所有内容

前端之家收集整理的这篇文章主要介绍了bash – 打印匹配后的所有内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > bash get string after character 5个
我有一个大文本文件,中间包含一个唯一的字符串.我想做的是使用grep打印字符串后的所有内容.
cat textfile | grep "target_string"
This highlights target_string but prints the whole file

cat textfile | grep -o "target_string"
This prints only target_string

cat textfile | grep -o "target_string*"
This prints only target_string

如何在target_string之后打印所有内容

你忘了’.’:
cat textfile | grep -o "target_string.*"
原文链接:https://www.f2er.com/bash/386657.html

猜你在找的Bash相关文章