Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zachwhaley/fin
A simply made unix shell written in C
https://github.com/zachwhaley/fin
minimal terminal unix unix-shell
Last synced: about 2 months ago
JSON representation
A simply made unix shell written in C
- Host: GitHub
- URL: https://github.com/zachwhaley/fin
- Owner: zachwhaley
- License: mit
- Created: 2018-04-18T15:47:46.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-10-30T22:10:34.000Z (2 months ago)
- Last Synced: 2024-10-30T23:19:30.288Z (2 months ago)
- Topics: minimal, terminal, unix, unix-shell
- Language: C
- Size: 13.7 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fin /fɪn/
Short for Griffin and pronounced Finn
fin is a simply made Unix shell written in C
## What You Need
[GNU GCC](http://gcc.gnu.org/)
```bash
$ sudo dnf install gcc
```## What it Does
Navigates the system with `cd`.
Sets and prints environment variables `set` and `get`.
Runs system commands.
Use `exit` command to exit fin.
## How to Use it
```sh
$ make
$ ./fin
𝑓 set fin=cool
𝑓 get fin
cool
𝑓 ls
builtin.c builtin.h execute.c execute.h fin.c LICENSE Makefile README.md str.h
𝑓 ls | grep fin
fin.c
𝑓 exit
```