Skip to content

Latest commit

History

History
13 lines (11 loc) 路 259 Bytes

README.md

File metadata and controls

13 lines (11 loc) 路 259 Bytes

executable-finder

A rust library for finding installed executables

use executable_finder::executables;

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