regex Grep命令根据单词位置搜索显示[关闭]

u91tlkcl  于 2023-10-22  发布在  其他
关注(0)|答案(1)|浏览(97)

**已关闭。**此问题需要debugging details。它目前不接受回答。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
15天前关闭。
Improve this question
嗨,我试图搜索字符串,并显示基于位置的工作
例如,显示第三个单词test、fine、true

This is test
This is fine
This is true

尝试了不同的选项,但无法找到任何基于位置。任何帮助将不胜感激

elcex8rz

elcex8rz1#

使用awk命令和标准输入,

echo "This is test                                                
This is fine
This is not true" | awk '{print $3}'

返回

test
fine
not

3美元是你的指数
如果你想连接所有结果,你可以使用这个

echo "This is test                                                
This is fine
This is not true" | awk '{print $3}' | tr '\n' ',' | sed 's/,$//')

返回

test,fine,not

相关问题