wonok 0.1.1

Atomically write the output of a command to a file depending on its exit value
Documentation
1
2
3
4
5
6
7
8
9
// Copyright (C) 2025 Leandro Lisboa Penz <lpenz@lpenz.org>
// This file is subject to the terms and conditions defined in
// file 'LICENSE', which is part of this source code package.

use std::error::Error;

fn main() -> Result<(), Box<dyn Error>> {
    wonok::main()
}