rwx/sh/alias/tree.sh

13 lines
127 B
Bash
Raw Normal View History

2024-11-19 13:42:11 +00:00
t() { a__tree "${@}"; }
a__tree() {
2024-11-16 12:55:07 +00:00
tree \
"${@}"
2024-11-16 12:53:18 +00:00
}
2024-03-15 11:24:07 +00:00
2024-11-19 13:42:11 +00:00
ta() { a__tree_all "${@}"; }
a__tree_all() {
2024-11-16 12:53:18 +00:00
tree \
2024-11-16 12:55:07 +00:00
-a \
"${@}"
2024-11-16 12:53:18 +00:00
}