lazy-badger 0.2.0

Simple Command Line Interface to call scripts from your working directory
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![doc = include_str!("../README.md")]

/// Supported bash extension of script
const BASH_EXTENSION: &str = "sh";

/// Read scripts implementation
mod read;
/// Run scripts implementation
mod run;

// ********** Re-exports ********** //
pub use self::{
    read::{find_script, list_scripts, FindScriptError, ListScriptsError},
    run::{run_script, RunScriptError},
};