executable-finder 0.3.0

Find executables in PATH variable
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# executable-finder

A rust library for finding installed executables

```rust
use executable_finder::executables;

fn main() {
    let executables = executables().unwrap();
    for executable in executables {
        println!("{:?}", executable);
    }
}
```