标签: bash shell terminal
如果终端打印(回显了)一串字符串,例如:
aPath aSecondPath aThirdPath
我将如何过滤这些内容,例如找到ThirdPath?
ThirdPath
答案 0 :(得分:0)
使用 GNU grep:
grep
printf '%s\n' aPath aSecondPath aThirdPath | grep -o ThirdPath
省去-o来打印整行“ a ThirdPath ”。
-o