Skip to content

Instantly share code, notes, and snippets.

@runemadsen
Last active May 30, 2018 18:42
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save runemadsen/4317597 to your computer and use it in GitHub Desktop.
Save runemadsen/4317597 to your computer and use it in GitHub Desktop.
Handy Bash Scripts
# show top top 10 most consuming processes
ps -A --sort -rss -o comm,pmem,pcpu | head -n 11
# show total size of folder
du -ch | grep total
# show remaning space left on HD
df -h
# show subfolders of current dir and their size
du -sh *
# show subfolders of current dir and their sizes ordered
du -sh * | sort -n -r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment