12 lines
386 B
Org Mode
12 lines
386 B
Org Mode
#+title: arsh - ARchaic SHell
|
|
#+options: toc:nil
|
|
Simple shell for Unix-like systems written in C, that has a funny name (for germans).
|
|
* Features
|
|
- Can run one command at a given time (no | , &&, ||, functions, etc)
|
|
- ~cd~ builtin command
|
|
- ~exit~ builtin command
|
|
* Build
|
|
To build it, you need ~readline~ library. Then use
|
|
#+begin_src shell
|
|
gcc main.c -O3 -lreadline -o arsh
|
|
#+end_src
|