Skip to content

Instantly share code, notes, and snippets.

@jhowbhz
Created March 7, 2024 02:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhowbhz/e3bf0812e7607649f2ecba903fa57ed7 to your computer and use it in GitHub Desktop.
Save jhowbhz/e3bf0812e7607649f2ecba903fa57ed7 to your computer and use it in GitHub Desktop.
Find big files in linux terminal
find / -type f -size +1G -exec du -h {} + | sort -rh | head -n 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment