How to get names of all the files (in one directory) contain a certain line of text?
例如:
我希望得到所有文件的名称
1 | start on startup |
在
我相信下面的技巧可以做到:
这将使您的
这里有一篇文章解释了
下面是解释
你可以试试下面的grep命令,
1 2 | $ cd /etc/init $ grep -l"start on startup" * |
或
通过一个命令,
1 | $ grep -l"start on startup" /etc/init/* |
来自
1 | -l, --files-with-matches print only names of FILEs containing matches |