randselect 0.3.1

Tool for randomly selecting files from a directory.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use anyhow::Result;
use clap::Parser;
use human_panic::setup_panic;

use randselect::Cli;

fn main() -> Result<()> {
    setup_panic!();
    pretty_env_logger::init();
    let cli = Cli::parse();

    randselect::run(&cli)?;

    Ok(())
}