以下のように記述することで特定の文字列を含むファイルのパスを出力できます。
grep -l "検索対象の文字列" ファイルパス
$ cat text.txt
sample
test
example
$ grep -l "sample" test.txt
test.txt
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 1 year has passed since last update.
以下のように記述することで特定の文字列を含むファイルのパスを出力できます。
grep -l "検索対象の文字列" ファイルパス
$ cat text.txt
sample
test
example
$ grep -l "sample" test.txt
test.txt
Register as a new user and use Qiita more conveniently
Go to list of users who liked