Provides a very simple search path file finder.
The following example shows the common pattern of finding an executable command on the command line.
```rust use search_path::SearchPath; use std::path::PathBuf;
fn whichcommand(cmdname: &str) -> Option
Version 0.1.0