rwx/sh/alias/tree.sh

13 lines
139 B
Bash
Raw Normal View History

2024-11-18 14:39:27 +00:00
t() { sh_a__tree "${@}"; }
sh_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-18 14:39:27 +00:00
ta() { sh_a__tree_all "${@}"; }
sh_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
}