This commit is contained in:
Marc Beninca 2025-07-27 19:34:47 +02:00
parent 4d734e50ac
commit bea4966ef3
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

15
sh/tty/tree.sh Normal file
View file

@ -0,0 +1,15 @@
# tree
#| tree
#= t
rwx_tree() {
tree \
"${@}"
}
#= ta
rwx_tree_all() {
rwx_tree \
-a \
"${@}"
}