rwx/sh/alias/tree.sh

13 lines
139 B
Bash
Raw Normal View History

2024-11-18 15:39:27 +01:00
t() { sh_a__tree "${@}"; }
sh_a__tree() {
2024-11-16 13:55:07 +01:00
tree \
"${@}"
2024-11-16 13:53:18 +01:00
}
2024-03-15 12:24:07 +01:00
2024-11-18 15:39:27 +01:00
ta() { sh_a__tree_all "${@}"; }
sh_a__tree_all() {
2024-11-16 13:53:18 +01:00
tree \
2024-11-16 13:55:07 +01:00
-a \
"${@}"
2024-11-16 13:53:18 +01:00
}