sh/shell/alias/tree.sh

11 lines
59 B
Bash
Raw Normal View History

2024-11-16 12:53:18 +00:00
t() {
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-16 12:53:18 +00:00
ta() {
tree \
2024-11-16 12:55:07 +00:00
-a \
"${@}"
2024-11-16 12:53:18 +00:00
}