2020-03-21 20:45:03 +00:00
|
|
|
/// A very simple colorized `cat` clone, using `bat` as a library.
|
|
|
|
/// See `src/bin/bat` for the full `bat` application.
|
2020-04-22 18:35:05 +00:00
|
|
|
use bat::{PrettyPrinter, StyleComponent};
|
2020-03-21 20:45:03 +00:00
|
|
|
use console::Term;
|
|
|
|
|
|
|
|
fn main() {
|
2020-04-21 19:29:47 +00:00
|
|
|
PrettyPrinter::new()
|
2020-04-21 18:06:09 +00:00
|
|
|
.term_width(Term::stdout().size().1 as usize)
|
2020-04-22 18:35:05 +00:00
|
|
|
.style_components(&[
|
2020-03-21 20:45:03 +00:00
|
|
|
StyleComponent::Header,
|
|
|
|
StyleComponent::Grid,
|
|
|
|
StyleComponent::Numbers,
|
2020-04-22 18:35:05 +00:00
|
|
|
])
|
2020-04-21 19:29:47 +00:00
|
|
|
.input_files(std::env::args_os().skip(1))
|
2020-04-22 18:33:19 +00:00
|
|
|
.print()
|
2020-04-21 19:29:47 +00:00
|
|
|
.expect("no errors");
|
2020-03-21 20:45:03 +00:00
|
|
|
}
|