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
- Host: GitHub
- URL: https://github.com/tayoky/tsh
- Owner: tayoky
- Created: 2025-02-21T08:27:29.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-02T10:57:03.000Z (over 1 year ago)
- Last Synced: 2025-03-02T11:31:59.298Z (over 1 year ago)
- Topics: shell, shell-prompt
- Language: C
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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
```