参见英文答案 >
bash get string after character 5个
我有一个大文本文件,中间包含一个唯一的字符串.我想做的是使用grep打印字符串后的所有内容.
我有一个大文本文件,中间包含一个唯一的字符串.我想做的是使用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之后打印所有内容?
你忘了’.’:
原文链接:https://www.f2er.com/bash/386657.htmlcat textfile | grep -o "target_string.*"