find命令
2022-10-23 本文已影响0人
江河湖海洋
find查找文件
在根目录下查找http.conf,区分大小写
find / -name http.conf
在根目录下查找http.conf,不区分大小写
find / -iname http.conf
+n 表示大于n, -n表示小于n, n表示等于
find / -size +204800
按照文件类型查找,b-块设备文件, d-目录,c-字符设备文件, p-管道文件,l-符号链接文件 f-普通文件
find / -type f