find

From NetBSD Wiki

Jump to: navigation, search
This article is a stub. You can help by editing it.

This article does not meet the minimum required quality. Please help.

find is a tool to walk and search through file hierarchy.

To find file do:

# find / -name MyFile

To see 20 largest files (larger than 5 MB) sorted by megabytes do:

# find / -type f -size +10000 | xargs du -m | sort -nr | head -20
Retrieved from "http://wiki.netbsd.se/find"
Personal tools