//! An example CLI replicating the functionality of the `cp` utility
//! that accepts a source path from stdin
//!
//! Example usage:
//! ```sh
//! $ find . -name Cargo.toml | cargo run --example cp -- - ./Cargo.toml.bak
//! ```
use PathBuf;
use Parser;
use MaybeStdin;