This file contains hidden or 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 |