nsbin/suche_groesstes_dir

11 lines
115 B
Plaintext
Raw Normal View History

2006-07-20 07:54:37 +00:00
#!/bin/sh
# Nico Schottelius
# find biggest directory
#
DIR=""
[ $# -eq 1 ] && DIR=$1
du $DIR | sort -g | less