staart
is tail-like implementation in Rust.
The binary expects exactly one argument which is the file to be followed.
Tailing of the file starts at the end of the file, and continues from there.
If a file is rotated with a new file created with the same name the program
will continue following the named file, and not the previous version. In the
case of truncation, data are printed from the start of the file.
staart
offers a Rust std-lib only binary crate capable of following a
file. If the file is rotated, the new file will be followed. Following will
start at the beginning should truncation be detected. Usage is simple:
staart <path/to/file.ext>
The full feature set of tail
is not replicated here. staart
will always
start from the end of the file, and print all subsequently appearing lines
to stdout
. If non-utf8 code points are found they are not ignored, and may
mangle your terminal.
staart
can be used as a library exposing methods to the TailedFile
struct it creates should there be a need to follow a file from directly
within a more complicated application.
Documentation can be found here.
[ ] Support following files in Windows environments [ ] Customize error handling such that missing file handles do not crash the program
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
To discuss features, offer assistance, or get help plese join the project's Matrix room.
Copyright (C) 2020-2021 Anthony Martinez