find
Jump to navigation
Jump to search
find[1] is a command-line utility that searches for files in one or more directory trees of a file system. Available in Linux, included in findutils packages, and in Windows.
find --help
Options[edit]
-xdevor-mountDon't descend/traverse directories on other filesystems.
Linux Example commands[edit]
- Search files between a size range:
find . -size +10Gfind . -size +100k -a -size -500k
- Search empty files:
find . -size 0k - Search non-empty files:
find . ! -size 0k - One line listing with sizes using ls and find:
ls -ldh $(find /path/to/search/) - One line filename and directory listing with full path:
find . -name "*" - One line filename and NOT directory . listing with full path:
find . -type f -exec ls \{\} \; - List files but not directories:
find . -type f
- Search for hard links:
find /path/to/search -samefile /path/to/your/file[2] (See also:stat) - Order by size:
- Delete files older than 5 days
find /path/to/directory/ -mindepth 1 -mtime +5 -printfind /path/to/directory/ -mindepth 1 -mtime +5 -delete[1]
/usr/lib/php/sessionclean (shell script)
Activities[edit]
- Identify differences between
findandls - Read https://stackoverflow.com/questions/tagged/find?tab=Votes
Related terms[edit]
dfdu:du -sh -- *docker volume lsanddocker system df- mtime
- MongoDB:
db.YOUR_COLLETION_NAME.find () lsmultipass findaws-find-maxdepth- Find My Device
- fd
See also[edit]
find,find .,ls,findmnt, locate,-mindepth, -name, -delete- File system,
du, df, find, ls, mkdir, touch, locate - find_(Windows)
- File systems:
mount,umount,findmnt,find,swapon,swapoff,UUID, blkid, mount options:/etc/fstab,udisksctl mount,guestmount,/proc/mounts,fstrim,systemd-mount,defaults du, du -hs, Disk space usage,df,ls,tree,find,docker system df,journalctl --disk-usage, No space left on device, ENOSPC,sar -F,growpart,resize2fs, ncdu, duf, dua-cli, macOS disk space
Text is available under the Creative Commons Attribution-ShareAlike License; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy.
Source: https://en.wikiversity.org/wiki/Linux/Basic_commands/find
Advertising: