Crates.io | treeify |
lib.rs | treeify |
version | 0.1.4 |
source | src |
created_at | 2016-05-07 17:52:37.346588 |
updated_at | 2016-07-03 17:02:48.744103 |
description | treeify converts the output of a command that lists files into a tree representation similar to the output of the command tree. |
homepage | |
repository | https://github.com/dzamlo/treeify |
max_upload_size | |
id | 4999 |
size | 21,455 |
treeify converts the output of a command that lists files into a tree representation similar to the output of the command tree.
If you use Arch Linux, a package is available in the AUR.
You can install the latest published version using cargo with the following command:
cargo install treeify
You can also install the latest version from the git repository:
cargo install --git https://github.com/dzamlo/treeify.git
A bash completion file is also generated but not installed with cargo install
. To use it you need to either use the AUR package, or manually build the application yourself.
Simply pipe the output of a command to treeify. For example:
find ~ -name '*.rs' | treeify
To prevent issue with filename containing new line characters, you can use the -0 or --null option:
find ~ -name '*.rs' -print0 | treeify --null
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.