I found that there is no easy to get way the size of a directory in Bash?
I want that when I type ls -, it can list of all the sum o
ls -
you can use the below to list files by size du -h | sort -hr | more or du -h --max-depth=0 * | sort -hr | more