mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-01 04:21:01 +01:00
14 lines
341 B
Rust
14 lines
341 B
Rust
/// A very simple colorized `cat` clone, using `bat` as a library.
|
|
/// See `src/bin/bat` for the full `bat` application.
|
|
use bat::PrettyPrinter;
|
|
|
|
fn main() {
|
|
PrettyPrinter::new()
|
|
.header(true)
|
|
.grid(true)
|
|
.line_numbers(true)
|
|
.input_files(std::env::args_os().skip(1))
|
|
.print()
|
|
.unwrap();
|
|
}
|