yom 0.1.7

A modern, easy to install competitor to the dash shell, built solely to execute files.
1
2
3
4
5
6
7
8
9
10
11
12
13
///  ██████╗██████╗ 
/// ██╔════╝██╔══██╗
/// ██║     ██║  ██║
/// ██║     ██║  ██║
/// ╚██████╗██████╔╝
///  ╚═════╝╚═════╝             
/// Standerd shell `cd`
#[inline]
pub fn cd(dir: &str) -> std::io::Result<()> {
    std::env::set_current_dir(&dir)?;
    Ok(())
}