Last active
December 20, 2017 10:12
-
-
Save davidcsejtei/990e36526bdb6fc093c7c8deb7fe147f to your computer and use it in GitHub Desktop.
Find and list (size given in MB not in KB) files larger than 10 MB in /home directory in Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find /home -size +10M | xargs du -sch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment