1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

tail: Refactor: Handle warnings and early exits in one place. Remove InputService ...

Other changes summary:
* Cleanup imports
* Remove stdin_is_pipe_of_fifo function
* Rename WatcherService to Observer
This commit is contained in:
Joining7943 2022-09-14 15:51:23 +02:00
parent 01153a701f
commit d57545d09c
10 changed files with 152 additions and 184 deletions

View file

@ -11,6 +11,7 @@ extern crate tail;
use crate::common::random::*;
use crate::common::util::*;
use pretty_assertions::assert_eq;
use rand::distributions::Alphanumeric;
use std::char::from_digit;
use std::io::Write;