嗨,我想知道如何在输出前添加一个短句/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
匹配的计数。