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