Update examples

This commit is contained in:
Ethan P
2020-05-16 15:16:51 -07:00
committed by David Peter
parent 0f06d3b90d
commit 3eb704e016
2 changed files with 21 additions and 2 deletions

19
examples/inputs.rs Normal file
View File

@ -0,0 +1,19 @@
/// A small demonstration of the Input API.
/// This prints embedded bytes with a custom header and then reads from STDIN.
use bat::{Input, PrettyPrinter};
fn main() {
PrettyPrinter::new()
.header(true)
.grid(true)
.line_numbers(true)
.inputs(vec![
Input::from_bytes(b"echo 'Hello World!'")
.name("embedded.sh")
.title("An embedded shell script.")
.kind("Embedded"),
Input::from_stdin().title("Standard Input").kind("FD"),
])
.print()
.unwrap();
}