mirror of
https://github.com/sharkdp/bat
synced 2024-11-06 21:20:25 +00:00
20 lines
581 B
Rust
20 lines
581 B
Rust
|
/// 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();
|
||
|
}
|