You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
2 years ago | |
|---|---|---|
| .. | ||
| .github/workflows | 2 years ago | |
| src | 2 years ago | |
| tests | 2 years ago | |
| .cargo_vcs_info.json | 2 years ago | |
| .gitignore | 2 years ago | |
| Android.bp | 2 years ago | |
| Cargo.toml | 2 years ago | |
| Cargo.toml.orig | 2 years ago | |
| LICENSE | 2 years ago | |
| LICENSE.txt | 2 years ago | |
| METADATA | 2 years ago | |
| MODULE_LICENSE_MIT | 2 years ago | |
| OWNERS | 2 years ago | |
| README.md | 2 years ago | |
| TEST_MAPPING | 2 years ago | |
| cargo2android.json | 2 years ago | |
README.md
which
A Rust equivalent of Unix command "which". Locate installed executable in cross platforms.
Support platforms
- Linux
- Windows
- macOS
Examples
-
To find which rustc executable binary is using.
use which::which; let result = which("rustc").unwrap(); assert_eq!(result, PathBuf::from("/usr/bin/rustc"));
-
After enabling the
regexfeature, 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.