如何在 bash/zsh 中重用 .gitignore 中的文件模式?

如何在 bash/zsh 中重用 .gitignore 中的文件模式?

这是该内容的内容.gitignore

cron.yaml
build
target
webview
*.pyc
*.sublime-workspace
.idea
*.rej
.coverage
app/tools/temp_*.py
app/tools/*/temp_*.py

我目前正在通过此脚本迭代本地文件夹中的文件:

find . -type f | grep -v -E "(.idea|.git)" | while read file
do
  # Do something with $file
done

我想进一步过滤这个$file变量,如果它与.gitignore.是否有任何现有实用程序或 bash 内置程序可以理解这些文件模式?

答案1

您也许可以使用grep's -faka ( --file) 选项,通过过程替换来“正则化”某些模式。例如:

find . -type f | grep -Ev '(\.idea|\.git)' | 
    grep -v -f <(sed 's/\([.|]\)/\\\1/g; s/\?/./g ; s/\*/.*/g' .gitignore) | 
    while IFS= read -r file ; do 
      # Do something with "$file"
    done

相关内容