rwx/sh/alias/tree.sh
2024-11-19 14:42:11 +01:00

12 lines
127 B
Bash

t() { a__tree "${@}"; }
a__tree() {
tree \
"${@}"
}
ta() { a__tree_all "${@}"; }
a__tree_all() {
tree \
-a \
"${@}"
}