Last active 1748862056

tree.sh Raw
1function tree {
2 find . | sed 's/[^/]*\//| /g;s/| *\([^| ]\)/+--- \1/'
3}