Last active
May 30, 2018 18:42
-
-
Save runemadsen/4317597 to your computer and use it in GitHub Desktop.
Handy Bash Scripts
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
# 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