ag grep 工具 - 如何在输出中只打印没有文件 name/path 的日志行?

ag grep tool - How to print only the log lines without file name/path in the output?

我正在尝试使用以下 ag 命令 grep 包含大量文件的文件夹,并打印结果而不是文件 name/path。

 ag --print-long-lines "test|temp" | grep -Ei  "error|fail"

但我仍然在以下输出中看到文件名(sampledata1.txt、sampledata2.txt)

sampledata1.txt test:error 
sampledata2.txt temp:fail
ag --nofilename "test|temp"