rwx/sh/tui/tree.sh
2025-07-27 20:26:17 +02:00

15 lines
107 B
Bash

# tree
#| tree
#= t
rwx_tree() {
tree \
"${@}"
}
#= ta
rwx_tree_all() {
rwx_tree \
-a \
"${@}"
}