从文件夹中的所有文档打印特定行

时间:2016-03-13 20:41:33

标签: linux command-prompt

我想从所有文件夹的文件中打印包含“testing。$”的所有行。

我正在尝试以下命令,但是我收到了一个错误。我错过了什么?

  

找到./* -type f -exec grep -l testing。$ {} \ | grep -n ^ | grep的   ^ Linha_do_Arquivo:| cut -d:-f2;

     

find:缺少参数:' - exec'

1 个答案:

答案 0 :(得分:1)

您不需要find
仅限grep

grep -rh "testing.$" .

-h隐藏输出中的文件名。如果你想输出它,请省略它。