Simple shell for Unix-like systems written in C
Find a file
2026-02-19 14:22:37 +01:00
.gitignore Initial commit 2026-02-19 14:18:59 +01:00
LICENSE Initial commit 2026-02-19 14:18:59 +01:00
main.c basic shell 2026-02-19 14:22:07 +01:00
README.org Added README 2026-02-19 14:22:07 +01:00

arsh - ARchaic SHell

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

gcc main.c -O3 -lreadline -o arsh