find命令

  • -name

find  ./ -name *.mp3 文件名包含mp3的文件

  • -type

find ./ -type f/d/p/c/b/s/l  --f:文件  --d:目录 --p:管道 --c:字符设备 --b:块设备 --s:socket ---l:符号连接

  • -size

默认大小 512B 也就是 0.5k

find /home/

  • -maxpath

  

原文地址:https://www.cnblogs.com/saintdingspage/p/9815275.html