1 unstable release
0.1.0 | Dec 7, 2023 |
---|
#780 in Operating systems
3KB
cmd-exists
Incredibly tiny library with the sole purpose of determining whether a command/program exists in the user's shell.
Usage
use cmd_exists::*;
fn main() {
assert!(cmd_exists("neofetch").is_ok());
}