gpt4 book ai didi

bash - 如何在 Unix shell 脚本中使用 echo 和 grep?

转载 作者:行者123 更新时间:2023-11-29 09:18:59 25 4
gpt4 key购买 nike

我需要在 shell 脚本中使用 echo 和 grep。我可以使用它吗?

我试过了,但是不正确:

echo Linux: grep "Linux" ~/workspace/ep-exercicios/m1/e2/intro-linux.html | wc -w

我需要显示消息:

Linux: (number of Linux word on the document).

例子:

Linux: 945

最佳答案

使用 grep-o 选项:

printf "%s: %s\n" "Linux : " "$(grep -o "Linux" ~/workspace/ep-exercicios/m1/e2/intro-linux.html | wc -w)"

应该这样做

grep 手册页说:

-o, --only-matching
Print only the matched (non-empty) parts of a matching line,with each such part on a separate output line.

关于bash - 如何在 Unix shell 脚本中使用 echo 和 grep?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38024647/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com