在 grep 搜索后添加回显

Add an echo after a grep search

有没有办法在 grep 命令后添加回显?

例如,如果我 运行 这个:

grep -R $id && echo appearances in database

输出为

listofids.txt:226526658 201
appearances in database

有没有办法让它显示成这样:

listofids.txt:226526658 201 appearances in database

我尝试了一些想到的想法,但没有任何效果,例如:

echo "" grep -R $id "appearances in database"

我知道这行不通,但我认为值得一试。

应该这样做:

echo "$(grep -R $id) appearances in database"