bash_-_scripts:tree
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
bash_-_scripts:tree [2016/11/09 11:33] – created peter | bash_-_scripts:tree [2019/11/29 11:18] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Bash - Scripts - Tree ====== | ||
- | |||
- | Finds all the files in the file tree and displays the file names fishing, showing the hierarchical file tree. | ||
- | |||
- | ===== Example Usage ===== | ||
- | |||
- | <code bash> | ||
- | tree [dir] | ||
- | </ | ||
- | |||
- | Example call: | ||
- | |||
- | <code bash> | ||
- | tree $HOME | ||
- | </ | ||
- | |||
- | |||
- | ===== Code ===== | ||
- | |||
- | <code bash> | ||
- | #!/bin/bash | ||
- | # | ||
- | # @ (#) tree v1.0 Visual display of a file tree | ||
- | # output to a file tree structure screen | ||
- | # | ||
- | |||
- | if [ "$ #" -gt 1] | ||
- | then echo "tree: wrong arg count"> | ||
- | echo " | ||
- | exit 2 | ||
- | fi | ||
- | |||
- | if [ "$ #" -eq 1] | ||
- | then if [! -d $ 1] | ||
- | then echo "$ 0: $ 1 not a directory"> | ||
- | echo " | ||
- | exit 2 | ||
- | fi | ||
- | fi | ||
- | |||
- | find $ {1: -.} -print | sort | sed -e " | ||
- | -e "s | [^ /] * / | / | g" \ | ||
- | -e "s | [^ * / | / |" \ | ||
- | -e "s | / \ ([^ /] * \) $ | \ 1 |" | ||
- | </ | ||
bash_-_scripts/tree.1478691180.txt.gz · Last modified: 2020/07/15 09:30 (external edit)