rwx/sh/alias/tree.sh

13 lines
131 B
Bash
Raw Normal View History

2024-11-19 09:17:14 +01:00
t() { sa__tree "${@}"; }
sa__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-19 09:17:14 +01:00
ta() { sa__tree_all "${@}"; }
sa__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
}