rwx/sh/fs/tree.sh

16 lines
107 B
Bash
Raw Normal View History

2025-07-27 16:54:32 +02:00
# tree
#| tree
2025-07-06 19:13:41 +02:00
#= t
2025-07-27 16:54:32 +02:00
rwx_tree() {
tree \
"${@}"
}
2025-07-06 19:13:41 +02:00
#= ta
2025-07-27 16:54:32 +02:00
rwx_tree_all() {
rwx_tree \
-a \
"${@}"
}