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); } } }