如何合并格式为find
的命令grep
和filename: => string
的结果?
例如find . -maxdepth 2 -type f -name .env -exec grep 'CURRENT_ENV' {} \;
,当发现CURRENT_ENV
字符串时,该命令将向我显示该行,例如CURRENT_ENV=staging
。我想按以下方式修改输出:./site1.com: CURRENT_ENV=staging
。
我不明白如何实现。可能吗?
答案 0 :(得分:4)
-H, --with-filename Print the file name for each match. This is the default when there is more than one file to search.