#tail #block #end #continue #found #content #reached

fs-tail

tail a file and block when end of file is reached. When new contents are found in the file, the loop will continue

5 releases

0.1.4 Dec 27, 2020
0.1.3 Dec 21, 2020
0.1.2 Dec 17, 2020
0.1.1 Dec 17, 2020
0.1.0 Dec 17, 2020

#4 in #reached

Download history 116/week @ 2024-11-29 90/week @ 2024-12-06 63/week @ 2024-12-13 32/week @ 2024-12-20 117/week @ 2024-12-27 80/week @ 2025-01-03 114/week @ 2025-01-10 46/week @ 2025-01-17 61/week @ 2025-01-24 145/week @ 2025-01-31 92/week @ 2025-02-07 153/week @ 2025-02-14 98/week @ 2025-02-21 147/week @ 2025-02-28 212/week @ 2025-03-07 361/week @ 2025-03-14

824 downloads per month

MIT license

8KB
156 lines

fs-tail

tail a file and block until more lines are added.

usage

let file = std::fs::File::open("/path/to/some/file").unwrap();
let file = TailedFile::new(file);
let locked = file.lock();
for line in locked.lines() {
    if let Ok(line) = line {
        println!("{}", line);
    }
}

Dependencies

~245KB