rusht 1.3.0

Shell commands written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use ::clap::Parser;
use ::rusht::find::handle_dir_with;
use ::rusht::find::DirWithArgs;
use ::rusht::ExitStatus;

fn main() -> ExitStatus {
    env_logger::init_from_env(
        env_logger::Env::default().filter_or(env_logger::DEFAULT_FILTER_ENV, "warn"),
    );
    let args = DirWithArgs::parse();
    handle_dir_with(args)
}