CentOS下查看目录中的文件数目

浏览次数:1757 关键词 ( 数目  文件  目录中  CentOS  )

查看当前目录文件总数:

find . -type f |wc -l

查看指定目录文件总数:

find /opt/nginx/logs -type f |wc -l