to make arsh more compatible with other Unix-Like systems - Fixed small memory leak
14 lines
461 B
Org Mode
14 lines
461 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
|
|
- ~CTRL+C~ stops running command
|
|
- Custom ~readline~ function
|
|
* Build
|
|
To build it, you don't need any external dependencies. Example with ~gcc~:
|
|
#+begin_src shell
|
|
gcc main.c -O3 -o arsh
|
|
#+end_src
|