arsh/README.org
2026-02-19 14:24:17 +01:00

419 B

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
  • CTRL+C stops running command

Build

To build it, you need readline library. Then use

gcc main.c -O3 -lreadline -o arsh