11 lines
115 B
Text
11 lines
115 B
Text
|
#!/bin/sh
|
||
|
# Nico Schottelius
|
||
|
# find biggest directory
|
||
|
#
|
||
|
|
||
|
DIR=""
|
||
|
|
||
|
[ $# -eq 1 ] && DIR=$1
|
||
|
|
||
|
du $DIR | sort -g | less
|