Skip to content

Instantly share code, notes, and snippets.

@pojntfx
Created October 24, 2023 15:34
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 pojntfx/918ad8d990e33da18f6349888f3dcfee to your computer and use it in GitHub Desktop.
Save pojntfx/918ad8d990e33da18f6349888f3dcfee to your computer and use it in GitHub Desktop.
Find the 20 largest files on a Linux system
#!/bin/bash
find / -type f -exec du -h {} + 2>/dev/null | sort -rh | head -n 20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment