查看 /var/log目录下文件个数
方法1.
[[email protected] learn_shell]# tree -L 1 /var/log/ |tail -1 5 directories, 42 files [[email protected]]# tree -L 1 /var/log/ |tail -1 |cut -d " " -f 3 42
tree参数
-L level 限制目录显示层级
cut参数
-b :以字节为单位进行分割。这些字节位置将忽略多字节字符边界,除非也指定了 -n 标志。
-c :以字符为单位进行分割。
-d :自定义分隔符,默认为制表符。
-f :与-d一起使用,指定显示哪个区域
方法2.
[[email protected]]# ls -l /var/log |grep "^-" |wc -l
42
方法3.
[[email protected] learn_shell]# find /var/log/ -maxdepth 1 -type f |wc -l
42
原文地址:https://www.cnblogs.com/homeboot/p/12696093.html
时间: 2024-10-01 05:20:52