在 linux系统中 常用 grep 'whatyouwillfindstr' [dir] [-r -n]搜寻某一个文件夹下的字符串
如下所示代码:
grep 'string' . -r -n
windows下同样有如下的代码可以完成相同的功能
findstr /s /i 'string' *.*