rash, the rat ass shell, is a rudimentary shell written in C
Find a file
2025-12-03 01:04:16 -07:00
.woodpecker add more stages to pipeline 2025-10-22 16:24:19 -06:00
examples shell scripting 2025-11-27 21:18:19 -07:00
src align cursor 2025-12-03 00:34:25 -07:00
.clang-format make format 2025-10-22 16:23:41 -06:00
.envrc Add nix direnv, package, and fix an unused result Werror 2025-03-04 16:34:13 -07:00
.gitignore Properly gitignore result 2025-04-17 17:45:42 -06:00
flake.lock Add nix direnv, package, and fix an unused result Werror 2025-03-04 16:34:13 -07:00
flake.nix update nix package description 2025-10-21 23:06:57 -06:00
LICENSE Initial commit 2025-01-29 02:12:44 -07:00
Makefile compile with -Wconversion 2025-12-03 01:04:16 -07:00
package.nix fix buffer overflow 2025-11-28 02:35:52 -07:00
README.md add ERROR_HELL to the makefile, this enables all (meaningful) errors in clang 2025-04-18 23:42:38 -06:00

rash

rash, or really awesome shell (or rat ass shell if you prefer), is a rudimentary shell written in C.

Currently it supports a handful of builtins, but not scripting functionality.

Building

To build rash, you just need to run make in the root of the souce code.

This will make an executable in ./build/rash, however by default it is a debug build with optimizations turned off.

To make a build without debug symbols that is highly optimized type make DEBUG=0

Contributing

To contibute, make a branch (or fork) with a general name of what you are trying to do. This branch will then be merged (or declined) after review.

Before you commit code it is a good idea to run it through valgrind, and run make using make ERROR_HELL=1. This requires clang, and enables all (meaningful) errors. If your code has an error here, you should probably fix it.