Minimalist, customizable shell with syntax highlighting
Find a file
2024-02-10 23:31:29 +00:00
.gitignore gitignore and makefile fix 2024-02-06 18:56:42 +00:00
color.c fix seg fault on prompt 2024-02-10 23:31:29 +00:00
color.h fix seg fault on prompt 2024-02-10 23:31:29 +00:00
commands.c comment on how pipe work 2024-02-09 17:20:38 +00:00
commands.h pipes 2024-02-09 01:18:14 +00:00
constants.h handle signals, rename functions, history command, qol features, fix highlight highlighting full command 2024-02-01 19:02:30 +00:00
history.c fix history navigation bug and improve code by memalloc 2024-02-10 17:29:58 +00:00
history.h fix history navigation bug and improve code by memalloc 2024-02-10 17:29:58 +00:00
LICENSE license and man page 2024-02-06 18:56:24 +00:00
Makefile gitignore and makefile fix 2024-02-06 18:56:42 +00:00
README.md pipes 2024-02-09 01:18:14 +00:00
rush.1 license and man page 2024-02-06 18:56:24 +00:00
rush.c fix seg fault on prompt 2024-02-10 23:31:29 +00:00
rush.h fix history navigation bug and improve code by memalloc 2024-02-10 17:29:58 +00:00

rush

rush is a minimalistic shell for Unix systems written in C.

  • Disclaimer: This project is for me to learn to write Unix syscalls, code might be inefficient, feel free to point out the mistakes and open a issue for that!

Preview

Valid command Invalid command

Dependencies

  • gcc

Building

$ make

Usage

$ ./rush

Features

  • No dependencies except a compiler
  • Showing current time and directory with custom color
  • Syntax highlighting on valid commands using ANSI colors
  • History navigation using up and down keys with history command
  • Support for environment variables
  • Editing using left and right arrow keys
  • !! to repeat last command
  • Pipes

Built in commands

  • cd
  • help
  • exit
  • history
  • export
  • source

Todo Features

  • stdin, stdout, stderr redirect
  • background jobs
  • tab completion

Credits