cmd icon indicating copy to clipboard operation
cmd copied to clipboard

Utility for running external programs

Results 8 cmd issues
Sort by recently updated
recently updated
newest added

Does `cmd` support interactive input? ### 1 For example, `(cmd "/tmp/test.bash")` does not prompt the user to enter a value, where `tmp/test.bash` is ``` #!/bin/bash read x; echo "$x"; exit;...

I'm not sure if this is something that can be worked around in `cmd`, but it is not possible to get at the process-info of a condition being signalled with...

Many shell commands leverage the terminal processing of special characters like `^H` (backspace) and `^M` (newline) to perform some special formatting, like rewriting text in place. This is often seen...

quicklisp and serapeum notes for the insufficiently CL initatied (me).

Or in particular, according to ASDF's source code, this should make it work on abcl, clisp, lispworks and allegro. Though I haven't tested on the others except Lispworks 7.1.2

Since UIOP is not supporting LispWorks, ```lisp CL-USER 7 > (cmd:$cmd "ls") Error: Not (currently) implemented on LISPWORKS: UIOP/LAUNCH-PROGRAM:LAUNCH-PROGRAM 1 (abort) Return to top loop level 0. Type :b for...

Currently, the following ```lisp > (cmd:cmd& "sleep 17") # ("sleep" "17") > ,quit ``` leaves the "sleep" process hanging in the background. It's particularly inconvenient if the process happens to...

It would be nice if you could cons to an alist and have that alist be used to initialize the environment for the program (without changing the environment variables of...