rusty-sponge 0.1.0

Soak up stdin and write it atomically to a file — a Rust port of moreutils `sponge` with strict-compat mode, configurable spill-to-tempfile, and a typed library API.
Documentation
1
2
3
4
5
//! `rusty-sponge` binary entry point. Thin wrapper around [`rusty_sponge::run`].

fn main() -> std::process::ExitCode {
    rusty_sponge::run()
}