head
and tail
simultaneously!
Not finding an existing utility to head and tail the output, nor a good way to combine existing utilities even with the help of a couple friends of mine, we decided to make one. We ended up doing a "day of learning" session with about 50 other engineers from GitHub and collaboritively came up with a minimum viable solution that worked well!
Now it's a real utility that we keep improving. Go try it out!
Contributions are welcome! Here are some good first issues you could look into.
You need to have Rust installed.
```shell
$ cargo install headtail ```
```
$ headtail somebigfile.txt
$ somecommand | headtail
$ headtail somebigfile.txt -H 25 -T 5
$ headtail somebigfile.txt -T 3
$ headtail somebigfile.txt -f ```
See headtail -h
for a full list of command-line options.
```
$ cargo run -- YOURARGSGO_HERE
$ RUSTLOG=trace cargo run -- YOURARGSGOHERE
$ cargo install --path . ```
Distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See license/APACHE and license/MIT.