如何在Linux外壳中的输出前添加一句话



嗨,我想知道如何在输出前添加一个短句/txt?

command: grep -o 'DONE' student_accomodation_records.txt | wc -l
output: 2

我只是计算一个单词在文本文件中出现的次数。

我该怎么说";输出中出现"2"的次数?

建议:

echo "the amount of times this appears: $(grep -c 'DONE' student_accomodation_records.txt)"

解释

-c选项打印出grep匹配的计数。

相关内容

  • 没有找到相关文章

最新更新