ogle 2.3.8

Execute a command periodically, showing the output only when it changes
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2020 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>> {
    #[cfg(feature = "console-subscriber")]
    console_subscriber::init();
    ogle::main()
}