arsh/README.org
2026-02-19 14:22:07 +01:00

386 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

Build

To build it, you need readline library. Then use

gcc main.c -O3 -lreadline -o arsh