linux command line: du --- how to make it show only total for each directories
On my version of du (from coreutils 8.14) this works:
du -h -d 1
-h is for human readable sizes.
This works with coreutils 5.97:
du -cksh *
On my version of du (from coreutils 8.14) this works:
du -h -d 1
-h is for human readable sizes.
This works with coreutils 5.97:
du -cksh *