rwx/sh/fs/tree.sh
2025-07-27 16:54:49 +02:00

15 lines
107 B
Bash

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