12 lines
127 B
Bash
12 lines
127 B
Bash
t() { a__tree "${@}"; }
|
|
a__tree() {
|
|
tree \
|
|
"${@}"
|
|
}
|
|
|
|
ta() { a__tree_all "${@}"; }
|
|
a__tree_all() {
|
|
tree \
|
|
-a \
|
|
"${@}"
|
|
}
|