Bug: 153120169

Clone this repo:
  1. 35bb389 Migrate to cargo_embargo. am: 3742ab94f0 am: eab417ce75 am: 97e9f86399 by Andrew Walbran · 6 months ago emu-34-2-dev main master
  2. 02f730e Migrate to cargo_embargo. am: 3742ab94f0 am: 16317c523c am: 3e88fafc41 by Andrew Walbran · 6 months ago
  3. 97e9f86 Migrate to cargo_embargo. am: 3742ab94f0 am: eab417ce75 by Andrew Walbran · 6 months ago
  4. 3e88faf Migrate to cargo_embargo. am: 3742ab94f0 am: 16317c523c by Andrew Walbran · 6 months ago
  5. eab417c Migrate to cargo_embargo. am: 3742ab94f0 by Andrew Walbran · 6 months ago

Build Status

which

A Rust equivalent of Unix command “which”. Locate installed executable in cross platforms.

Support platforms

  • Linux
  • Windows
  • macOS

Examples

  1. To find which rustc executable binary is using.

    use which::which;
    
    let result = which("rustc").unwrap();
    assert_eq!(result, PathBuf::from("/usr/bin/rustc"));
    
  1. After enabling the regex feature, find all cargo subcommand executables on the path:

    use which::which_re;
    
    which_re(Regex::new("^cargo-.*").unwrap()).unwrap()
        .for_each(|pth| println!("{}", pth.to_string_lossy()));
    

Documentation

The documentation is available online.