janetsh icon indicating copy to clipboard operation
janetsh copied to clipboard

A powerful new shell that uses the janet programming language for both the implementation and repl.

Results 43 janetsh issues
Sort by recently updated
recently updated
newest added

When you background something with ctrl-z running (fg-job) with no arg may be useful. Perhaps some *last-job* variable may also be useful.

enhancement
maybe

I recently wanted to print out all the commands a script was executing (A C build script) - It was very hard to do so, In bash you do something...

enhancement
maybe

``` $CC $CFLAGS ``` Would run cc with a single arg, rather than expanding out the env.

enhancement
maybe

Currently it is more like: Launch job, and if fg job - wait for it. It may be nicer to refactor it to just launch jobs, and in other places...

refactor

The 'env' builtin used for printing doesn't provide nice escaping, and if an env variable has contents that look like an env variable assignment it causes even more problems.

bug
rare

It could be confusing, especially in script mode if a user requests $? and then the job stops. $$ and $$_ may not need any change because they wait for...

enhancement

Readline has a user interface for this IIRC, but I would like an api.

enhancement

examples: ``` ($ gcc (sh/split ($$ pkg-config --cflags))) ``` This is useful for building commands lines from the output of other commands. Counter argument is that regular string splitting works...

enhancement
maybe