shell for Unix and Linux
git clone https://github.com/MESYETI/ysh
cd ysh
cmake .
make
these platforms have been shown to be compatible with ysh:
- Linux
- MacOS
ysh creates a directory at ~/.config called ysh2, inside is a file called init.ysh, this file allows you to set the prompt, you can set the prompt like this:
set YSH_PROMPT "$ "
ysh isn't finished but i'm working on useful features, here is a list of them
- autocompletion (files AND commands)
- multiple commands on one line, here's an example:
printf "hello "; printf "world\n"