linux查找包含某关键词的文件

230

查找当前目录下含有 buffer 参数的文件

grep buffer * -irn

查找带有timeout参数的文件

grep timeout * -irn

Post Comment