mirror of
https://gitee.com/openharmony/third_party_rust_which-rs
synced 2024-11-23 07:29:42 +00:00
b3ba51a154
Merge pull request !3 from xxlight/dev_check |
||
---|---|---|
.github/workflows | ||
src | ||
tests | ||
.gitignore | ||
BUILD.gn | ||
Cargo.toml | ||
LICENSE.txt | ||
README.md | ||
README.OpenSource |
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
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.