标签: linux shell
如何编写shell脚本来打印系统中包含最大文件数(包括隐藏文件)的目录名称?
答案 0 :(得分:1)
为了找到包含大多数普通文件的目录,您可以执行以下操作。
$ find / -type f -print0 | xargs -n 1 --null dirname | sort | uniq -c | sort -n | tail -n 1
它将输出具有最多普通文件的目录,从文件数开始,后跟目录名。
与旧版xargs -n 1兼容时,需要使用dirname。
xargs -n 1
dirname