标签: bash
我使用this主题中的命令查看目录和所有子目录中的所有文件扩展名。
find . -type f -name '*.*' | sed 's|.*\.||' | sort -u
如何计算每个分机的出现次数?
像:
png: 140
答案 0 :(得分:1)
像这样,使用带有-c, --count标记的uniq:
-c, --count
uniq
find . -type f -name '*.*' | sed 's|.*\.||' | sort | uniq -c