To find large files in linux you can use the find command.
As an example you can find all files that are close to 1GB or over by issuing the command:
find . -type f -size +1000000
The above command will list all files larger than 1GB recursively from the current working directory.
Related Articles
No user responded in this post
Leave A Reply