Skip to content

Instantly share code, notes, and snippets.

@tomplex
Last active January 13, 2018 01:17
Show Gist options
  • Save tomplex/5d4bf9acf1dc4b63cede9fcb4a62cc4f to your computer and use it in GitHub Desktop.
Save tomplex/5d4bf9acf1dc4b63cede9fcb4a62cc4f to your computer and use it in GitHub Desktop.
List top 10 largest files / directories in given directory
#!/bin/bash
# Usage:
# ./list-dir-size.sh my_directory
#
du -hsx $1 | sort -rh | head -10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment