rwx/sh/alias/tree.sh
2025-07-06 19:13:41 +02:00

12 lines
85 B
Bash

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