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