3 lines
121 B
Bash
Executable file
3 lines
121 B
Bash
Executable file
#!/bin/sh
|
|
case "$1" in [0-9]) depth=$1; shift;; esac
|
|
tree -a --dirsfirst -L ${depth:-3} --du -h -C "$@" | ${PAGER:-less}
|