很简单
find . -type f -name '*.*' -exec basename {} \; | tr A-Z a-z | sort | uniq -w32 --all-repeated=separate | uniq -c | sort -nr | awk '$1>1{print $0}'
忽略大小写查看文件夹下重复的文件方法
阅读 42
2022-06-06
很简单
find . -type f -name '*.*' -exec basename {} \; | tr A-Z a-z | sort | uniq -w32 --all-repeated=separate | uniq -c | sort -nr | awk '$1>1{print $0}'
相关推荐
精彩评论(0)