7c0ca71ed4
Signed-off-by: Nico Schottelius <nico@denkbrett.schottelius.org>
8 lines
84 B
Bash
Executable file
8 lines
84 B
Bash
Executable file
#!/bin/sh
|
|
# Nico Schottelius
|
|
# find biggest directory
|
|
#
|
|
|
|
DIR=""
|
|
|
|
du "$@" | sort -g
|