riptree

Crates.ioriptree
lib.rsriptree
version0.3.8
sourcesrc
created_at2022-11-03 17:38:59.741297
updated_at2024-02-12 16:45:03.425551
descriptionDisplays and searches through directories
homepagehttps://www.ryanwebdev.io/
repositoryhttps://github.com/tiller92/file_digger
max_upload_size
id704433
size53,666
Ryan Tiller (tiller92)

documentation

README

File Digger (rip_tree)

Recreating the popular tree command but with rust. Some goals inlcude:

    1. implementing popular tree commands,  
    2. creating a verison with similar performance,   
    3. a version with a nice looking command line output,  
    4. no external crates or dependencies,
    5. search functionality that returns a list of paths 
        where a file or directory was found

Install

    `cargo install riptree`

Usage (more functionality coming)

    just calling riptree will display the folders and files of the current directory
    `riptree` (will use your current directory will not look through or display . folders or) 

    pass riptree a path to start somewhere besides the current directory
    `riptree /some/path/to/somewhere/`

    display dot folder and files 
    `riptree -a`

    search for a file or directory in the current directory 
    `riptree 'query'`

    dont display directories with more then the specified files
    `riptree --filelimit #`
    
    for more riptree --help
    `riptree --help`
Commit count: 52

cargo fmt