Search for large files on Linux from the command line
Search for files of 100MB or more under the current directory
$ find ./ -size +100M | xargs ls -lh
Output the size of each file in the current directory (including the directory)
$ ls | xargs du -sh
Output the size of the current directory
$ du -sh
Recommended Posts