To run ds-rs, use the command ds
:
```console
ds --help A command to search and display directory structures.
Usage: ds.exe [OPTIONS]
Options:
-p, --path
```console
ds --path "C:/Users/%USERNAME%/Documents" Displaying contents of "C:/Users/%USERNAME%/Documents" ="Github" ="Projects" ```
```console
ds --path "C:/Users/%USERNAME%/Documents" -f -s Displaying contents of "C:/Users/%USERNAME%/Documents" ="GitHub" ="Projects" -"Resume.docx" -"Resume.pdf" ```
```console
ds --path "C:/Users/%USERNAME%/Documents" -r --depth 3 -f -s Displaying contents of "C:/Users/%USERNAME%/Documents" ="GitHub" ="Projects" ="Python" ="pythonproject1" ="pythonproject2" -"pythonscript.py" ="Rust" ="directory-search-rs" -"newbinandlib.bat" -"Resume.docx" -"Resume.pdf" ```
The easiest way to install this binary is through cargo install
:
console
cargo install ds-rs
To build from source, clone the git repository, build with cargo, and move the binary to a stable folder. ```console
git clone https://github.com/mysteriouslyseeing/directory-search-rs cd directory-search-rs cargo build --release cp ./target/release/ds /path/to/destination/ ```