gpt4 book ai didi

linux - Bash 查找行号

转载 作者:IT王子 更新时间:2023-10-29 00:49:38 25 4
gpt4 key购买 nike

我有这个脚本:

find . -name "$2" -print | xargs grep --colour=auto "$1"

它在 $2 个匹配文件中搜索 $1 个单词。我怎样才能让它打印出找到单词的行号。

谢谢

最佳答案

你不需要在这里使用findxargs。您可以像这样使用递归 grep:

grep -RHn --colour=auto "$1" --include='$2' .

选项:

-n  # for printing line numbers
-R # for recursive grep
-H # for printing file names

关于linux - Bash 查找行号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31854479/

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