2014-04-14 21:56:07 +04:00
|
|
|
# tree
|
|
|
|
|
|
|
|
> Show the contents of the current directory as a tree.
|
|
|
|
|
2016-08-03 14:08:25 +03:00
|
|
|
- Show files and directories up to 'num' levels of depth (where 1 means the current directory):
|
2014-04-14 21:56:07 +04:00
|
|
|
|
|
|
|
`tree -L {{num}}`
|
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
- Show directories only:
|
2014-04-14 21:56:07 +04:00
|
|
|
|
|
|
|
`tree -d`
|
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
- Show hidden files too:
|
2014-04-14 21:56:07 +04:00
|
|
|
|
|
|
|
`tree -a`
|
|
|
|
|
2016-09-16 13:41:23 +03:00
|
|
|
- Print the tree without indentation lines, showing the full path instead (use `-N` to not escape whitespace and special characters):
|
2014-04-14 21:56:07 +04:00
|
|
|
|
2016-08-03 14:05:22 +03:00
|
|
|
`tree -i -f`
|
2015-12-29 07:13:19 +03:00
|
|
|
|
2016-08-24 19:09:58 +03:00
|
|
|
- Print the size of each node next to it, in human-readable format:
|
2015-12-29 07:13:19 +03:00
|
|
|
|
2016-08-24 19:09:58 +03:00
|
|
|
`tree -s -h`
|
2015-12-29 07:13:19 +03:00
|
|
|
|
2016-08-24 19:09:58 +03:00
|
|
|
- Filter the tree using a wildcard (glob) pattern:
|
2015-12-29 07:13:19 +03:00
|
|
|
|
2016-08-24 19:09:58 +03:00
|
|
|
`tree -P {{*.txt}}`
|
2017-12-28 08:34:17 +03:00
|
|
|
|
2017-12-29 06:15:39 +03:00
|
|
|
- Ignore entries that match a wildcard (glob) pattern:
|
2017-12-28 08:34:17 +03:00
|
|
|
|
2017-12-29 06:15:39 +03:00
|
|
|
`tree -I {{*.txt}}`
|