tsh is the minimalist shell created by tayoky for the stanix operating system
the goal of tsh is to provide basic functionality (eg shell scripting ,pipes , ...) while still being very portable
first run the configure script
./configurethen compile
makeand then launch
./tshinstalling localy
./configure --prefix="$HOME/bin"
make
make installinstalling globaly
./configure --prefix="/usr"
make
make install