cmd-exists 0.1.1

Determine the existense of a command/program.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# cmd-exists
[![Crate](https://img.shields.io/crates/v/cmd-exists.svg)](https://crates.io/crates/cmd-exists)

Incredibly tiny library with the sole purpose of determining whether a command/program exists in the user's shell.

## Usage
```rust
use cmd_exists::*;

fn main() {
    assert!(cmd_exists("neofetch").is_ok());
}
```