grep 特定文件类型

grep 特定文件类型

我有以下 bash 函数,并希望将我自己的文件类型传递给该函数。我想知道我该怎么做。

greprc ()
  {
       grep -hir --exclude=\*.el --include=\*.{org,texi} "$@"
  }
  

相关内容