t_trace 0.1.3

High-performance, command-line statistics tracker for your shell
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::cli::Shell;

const BASH_SCRIPT: &str = include_str!("../scripts/init.sh");

pub fn print_script(shell: Shell) {
    match shell {
        Shell::Bash => {
            println!("{}", BASH_SCRIPT);
        }
    }
}