Read from multiple input streams like a cool CLI tool should.
```rust use std::io::{BufRead,BufReader}; use fileinput::FileInput;
let filenames = vec!["testdata/1", "testdata/2"]; let fileinput = FileInput::new(&filenames); let mut reader = BufReader::new(fileinput);
for line in reader.lines() { println!("{}", line.unwrap()); } ```
The (minimal) API is documented: https://www.spladug.net/rust/fileinput/index.html
This package is on crates.io.
toml
[dependencies]
fileinput = "*"
This library is licensed under the MIT license, see LICENSE.
New commits in this repository are signed with my GPG key which can be found at keybase.io/spladug.