An open API service indexing awesome lists of open source software.

https://github.com/tayoky/tsh

A minimalist shell
https://github.com/tayoky/tsh

shell shell-prompt

Last synced: about 1 month ago
JSON representation

A minimalist shell

Awesome Lists containing this project

README

          

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