rwx/sh/alias/tree.sh
2024-11-18 15:39:27 +01:00

12 lines
139 B
Bash

t() { sh_a__tree "${@}"; }
sh_a__tree() {
tree \
"${@}"
}
ta() { sh_a__tree_all "${@}"; }
sh_a__tree_all() {
tree \
-a \
"${@}"
}