例如,想要在当前文件夹下的多个.c或者.txt文件中查找“shutdown”字符串,
可以使用“grep shutdown ./*.c”或“grep shutdown ./*.txt”即可
使用find命令如下:find /test -type f -name "*.txt" -exec grep -l "shutdown" {} \;
2023-01-30 16:28:17
例如,想要在当前文件夹下的多个.c或者.txt文件中查找“shutdown”字符串,
可以使用“grep shutdown ./*.c”或“grep shutdown ./*.txt”即可
使用find命令如下:find /test -type f -name "*.txt" -exec grep -l "shutdown" {} \;