bash_-_scripts:tree
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
bash_-_scripts:tree [2016/11/09 11:50] – 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. | ||
- | |||
- | Tree, searches all file tree and prints the names of all files in a visual tree format. | ||
- | |||
- | |||
- | ===== 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 [ " | ||
- | then echo "tree: wrong arg count"> | ||
- | echo " | ||
- | exit 2 | ||
- | fi | ||
- | |||
- | if [ " | ||
- | 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 |" | ||
- | </ | ||
- | |||
- | |||
- | ===== Example Usage ===== | ||
- | |||
- | This uses an implicit directory (the current directory) as the beginning of the file tree. | ||
- | |||
- | <code bash> | ||
- | tree | ||
- | </ | ||
- | |||
- | |||
- | Print the tree listing for each file of the entire system. | ||
- | |||
- | <code bash> | ||
- | tree / | ||
- | </ | ||
- | |||
- | |||
- | This shows the tree-format for all other users system (assuming that all user directories are the same directory, such as /usr/*). | ||
- | |||
- | <code bash> | ||
- | tree $HOME / .. | ||
- | </ | ||
- | |||
- | |||
- | ===== Test ===== | ||
- | |||
- | Consider the example of a directory structure. | ||
- | log aa, which contains the file1 file directory and b, respectively, | ||
- | |||
- | The **find** command will give a printout like this: | ||
- | |||
- | <code bash> | ||
- | find /tmp -print | ||
- | </ | ||
- | |||
- | Result | ||
- | |||
- | < | ||
- | /tmp | ||
- | /tmp/a | ||
- | /tmp/a/aa | ||
- | / | ||
- | /tmp/b | ||
- | /tmp/b/bb | ||
- | / | ||
- | </ | ||
- | |||
- | As can be seen from this listing, the files a and aa are directories and file file1 is located at the bottom of the file tree. | ||
- | |||
- | Now compare this result with the results of the **tree** script. | ||
- | |||
- | <code bash> | ||
- | tree /tmp | ||
- | </ | ||
- | |||
- | Result | ||
- | |||
- | < | ||
- | /tmp | ||
- | /a | ||
- | //aa | ||
- | ///file1 | ||
- | /b | ||
- | //bb | ||
- | ///file2 | ||
- | </ |
bash_-_scripts/tree.1478692253.txt.gz · Last modified: 2020/07/15 09:30 (external edit)