Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要了解文件中的不同日期并计算 unix 中的每个日期。 zcat abcd.log.gz |cut -d'þ' -f1|cut -c1-10|sort|uniq使用此命令,我在文件中获得了不同的日期。但我也需要计数。
zcat abcd.log.gz |cut -d'þ' -f1|cut -c1-10|sort|uniq
请就此向我提出建议。
提前致谢。
您可以使用uniq -c
uniq -c
... | sort | uniq -c | grep -v <Unwanted text>
根据您的评论,您将获得额外的“1 次”,因此请在之后使用这个确切的字符串grep -v
grep -v