12 lines
139 B
Bash
12 lines
139 B
Bash
t() { sh_a__tree "${@}"; }
|
|
sh_a__tree() {
|
|
tree \
|
|
"${@}"
|
|
}
|
|
|
|
ta() { sh_a__tree_all "${@}"; }
|
|
sh_a__tree_all() {
|
|
tree \
|
|
-a \
|
|
"${@}"
|
|
}
|