rwx/sh/alias/tree.sh

13 lines
127 B
Bash
Raw Normal View History

2024-11-19 14:42:11 +01:00
t() { a__tree "${@}"; }
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-19 14:42:11 +01:00
ta() { a__tree_all "${@}"; }
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
}