From 2825aa5d883267da6c0da28371ae81739147021f Mon Sep 17 00:00:00 2001 From: Aleksandr Lebedev Date: Thu, 19 Feb 2026 14:20:43 +0100 Subject: [PATCH] Added README --- README.org | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 README.org diff --git a/README.org b/README.org new file mode 100644 index 0000000..8dbfbb8 --- /dev/null +++ b/README.org @@ -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