use ;
/// Reads a pipe from stdin and returns it as a `String`.
/// # Errors
/// Will return `None` if there is no pipe handled to the program or some error occurs while reading stdin (see [`std::io::Read::read_to_string`](https://doc.rust-lang.org/std/io/trait.Read.html#method.read_to_string) for more information).
/// Reads pipe from stdin, splits it by whitespace and returns it as a `Vec<String>`.
///
/// See [`read_pipe`] for more information.