external-program
external-program copied to clipboard
A portable Common Lisp library for running external programs from within Lisp.
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/sellout/external-program). ## Config Migration Needed - [ ]...
I am sorry for bothering you but I just don't know where to ask. I am using some [foreign CL code ](https://gitlab.com/asciiphil/advent-of-code/blob/master/visualization.lisp) to create an animation using `external-program` to pipe...
SBCL has a `:pty` keyword for run-program, which make it possible to talk to other REPL like program possible, for example, python, psql, sqlite, etc. Although it's not in CCL...
I was astonished to find out that external-program does not support passing environment variables under SBCL as provided by the user, adding single quotes around them instead. This is an...
Please consider adding :description, :author and :license information to your ASDF system(s). This will greatly help Quicklisp users and make it easier for them to report bugs. More information: http://blog.quicklisp.org/2015/05/looking-for-more-metadata.html...
Currently tests call things like `cd` and `which`, which don’t exist on Windows. Need to make them more portable.
E.g. if I have the following script to print out some variables: ``` #!/bin/bash echo "PATH: $PATH" echo "LD_LIBRARY_PATH: $LD_LIBRARY_PATH" ``` Then at the REPL: ``` ;; Control to show...