7 lines
132 B
Bash
7 lines
132 B
Bash
# Search only on current filesystem.
|
|
# Current dir by default.
|
|
# Usage: ncdu [DIRS]
|
|
function ncdu() {
|
|
/usr/bin/ncdu -x -- "${@}"
|
|
}
|