3 lines
78 B
Bash
Executable file
3 lines
78 B
Bash
Executable file
#!/bin/sh
|
|
|
|
find . -maxdepth 1 -mindepth 1 -print0 | xargs -0 du -sh | sort -h
|