Added README

This commit is contained in:
Aleksandr Lebedev 2026-02-19 14:20:43 +01:00
parent 7bbfb75566
commit 2825aa5d88

12
README.org Normal file
View file

@ -0,0 +1,12 @@
#+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