| Crates.io | executable-finder |
| lib.rs | executable-finder |
| version | 0.3.0 |
| created_at | 2022-01-24 22:09:46.467209+00 |
| updated_at | 2022-10-16 17:32:08.397608+00 |
| description | Find executables in PATH variable |
| homepage | https://github.com/Kl4rry/executable-finder |
| repository | https://github.com/Kl4rry/executable-finder |
| max_upload_size | |
| id | 520457 |
| size | 8,171 |
A rust library for finding installed executables
use executable_finder::executables;
fn main() {
let executables = executables().unwrap();
for executable in executables {
println!("{:?}", executable);
}
}