Minimalist, customizable shell with syntax highlighting
Find a file
2024-02-16 13:45:35 +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 delete comments and add usage in readme 2024-02-16 13:45:35 +00:00
commands.h background jobs & stdout,in,err redirect 2024-02-11 01:01:28 +00:00
constants.h background jobs & stdout,in,err redirect 2024-02-11 01:01:28 +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
job.c delete comments and add usage in readme 2024-02-16 13:45:35 +00:00
job.h background jobs & stdout,in,err redirect 2024-02-11 01:01:28 +00:00
LICENSE license and man page 2024-02-06 18:56:24 +00:00
Makefile update version 2024-02-11 01:07:02 +00:00
README.md delete comments and add usage in readme 2024-02-16 13:45:35 +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
$ sudo make install

Usage

$ ./rush

# > to redirect stdout
# < to redirect stdin
# 2> to redirect stderr
# >> to append to file
# & to run command in background
# | to pipe
# !! to repeat last command
# >& to redirect both stdout and stderr

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
  • autojump to directorys
  • stdin, stdout, stderr redirect
  • Background jobs

Built in commands

  • cd
  • help
  • exit
  • history
  • export
  • source
  • j
  • bg

Todo Features

  • Tab completion
  • Git integration
  • Allow arguments with space in double quotes
  • Underline file path if it exists
  • Aliases

Credits