ff-find 0.5.2

ff is a simple and fast utility for file search on Unix commandline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate clap;

use clap::Shell;

include!("src/app.rs");

fn main() {
    let outdir = "shell_completion";
    let mut app = build();
    app.gen_completions("ff", Shell::Bash, &outdir);
    app.gen_completions("ff", Shell::Fish, &outdir);
    app.gen_completions("ff", Shell::Zsh, &outdir);
    app.gen_completions("ff", Shell::PowerShell, &outdir);
}