nsbin/suche_grosse_verzeichnisse
Nico Schottelius d3c6e29902 Initial commit
2006-07-20 09:54:37 +02:00

12 lines
197 B
Bash
Executable file

#!/bin/sh
# Nico Schottelius, 2004
# find biggest directories
#VDEV="/proc /sys /dev/pts /dev" # this is double
VDEV="/proc /sys"
DIR=/
[ $# -eq 1 ] && DIR=$1
du --max-depth=1 "$DIR" | sort -n