rwx/sh/alias/tree.sh

13 lines
127 B
Bash
Raw Normal View History

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