我完全是bash的新手,所以这里是我的问题:
从标准输入中提供任意数量的文本。
输出:非重复行数。
从标准输入中提供任意数量的文本。
输出:非重复行数。
例如:
输入:
She is wearing black shoes.
My name is Johny.
I hate mondays.
My name is Johny.
I don’t understand you.
She is wearing black shoes.
输出:
2
您可以尝试使用uniq man uniq并执行以下操作
原文链接:https://www.f2er.com/bash/388504.htmlsort file | uniq -u | wc -l