shcl
shcl copied to clipboard
SHell in Common Lisp
Stumpwm's `exec` command builds a string for `/bin/sh` to eval. Stumpwm could just load SHCL and have SHCL do the eval.
SHCL can parse the input text and then colorize it.
SHCL depends on a small C library named libshclsupport. SHCL loads it with `cffi`. That's annoying. It would be way cooler if SHCL didn't depend on a special purpose shared...
This is a completely crazy idea that almost no one actually wants, but... Tools like find and xargs take in a command to run. Normally, you have to name a...
see above; the problem comes from my `~/.sbclrc` initializing `swank`. With a `--no-userinit` in the `Makefile` QL is not initialized, and so the required libraries are not found. How should...
SHCL doesn't support any sort of signal handling. It should. This will be trickier than in your typical shell. SHCL doesn't fork for subshells. Since signals are delivered to a...