5 lines
96 B
Bash
Executable File
5 lines
96 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# du = sizes in Ko
|
|
du -s * | awk '{$1*=1000; print}' | sort -n | tohuman | column -t
|