我写了一个简单的bash脚本,因为我正在使用一个具有相同参数的grep命令。我从〜/ bin运行它运行正常。
我的问题是:当它通过我的bash脚本时,所有的着色都消失了。完全相同的命令放在命令行中,很好地代码行号,文件名等。
这是我的bash脚本
#!/bin/bash # grep PHP files inside of myfolder,recursively and with line numbers grep -rn --include="*.PHP" "$2" /home/me/myfolder/$1
您可能已将grep定义为.bashrc中的grep –color = auto的别名,但脚本未加载。在您的脚本中使用显式的grep -color。