基于字符串的命令ubuntu

问题描述 投票:0回答:1

如何使用ubuntu中的命令查找文件中包含特定子字符串的字符串?我喜欢烤蛋糕。我的命令应该找到以'ke'结尾的单词(即cake和bake)并显示它

command ubuntu-16.04
1个回答
0
投票

为此,sedgrep的组合可以工作:

$ echo "I love to bake and eat a cake" | sed 's/ /\n/g' | grep ke$
bake
cake

sed命令用换行符替换空格,然后grep命令查找以ke结尾的行。

© www.soinside.com 2019 - 2024. All rights reserved.