Expand description
which
A Rust equivalent of Unix command which(1)
.
§Example:
To find which rustc executable binary is using:
use which::which;
use std::path::PathBuf;
let result = which("rustc").unwrap();
assert_eq!(result, PathBuf::from("/usr/bin/rustc"));
Structs§
- Canonical
Path - An owned, immutable wrapper around a
PathBuf
containing the canonical path of an executable. - Path
- An owned, immutable wrapper around a
PathBuf
containing the path of an executable. - Which
Config - A wrapper containing all functionality in this crate.
Enums§
Functions§
- which
- Find an executable binary’s path by name.
- which_
all - Find all binaries with
binary_name
usingcwd
to resolve relative paths. - which_
all_ global - Find all binaries with
binary_name
ignoringcwd
. - which_
global - Find an executable binary’s path by name, ignoring
cwd
. - which_
in - Find
binary_name
in the path listpaths
, usingcwd
to resolve relative paths. - which_
in_ all - Find all binaries with
binary_name
in the path listpaths
, usingcwd
to resolve relative paths. - which_
in_ global - Find all binaries with
binary_name
in the path listpaths
, ignoringcwd
.