假设我有以下内容file.txt
:
asiub
sj
abq
b aia
ainp oo
test = 123d
sub ,.
aiba 87ab
test = 129szs bq
test = aqua
ayqvq 133s
我只想打印file.txt
包含字符串的行test =
。
想要的output.txt
:
test = 123d
test = 129szs bq
test = aqua
有什么建议吗?
谢谢
假设我有以下内容file.txt
:
asiub
sj
abq
b aia
ainp oo
test = 123d
sub ,.
aiba 87ab
test = 129szs bq
test = aqua
ayqvq 133s
我只想打印file.txt
包含字符串的行test =
。
想要的output.txt
:
test = 123d
test = 129szs bq
test = aqua
有什么建议吗?
谢谢
grep "test =" file.txt > output.txt
要仅在行首匹配字符串,请使用
grep "^test =" file.txt > output.txt