Elias Pipping
Elias Pipping
Oh. I didn't know that. I guess that makes what I had in mind quite difficult. Special readings could be a problem. And then, what if (this is entirely fictional....
There is no bug here. You should be passing `:supersede` instead of `:overwrite` if you don't want an error to be raised. Please see also https://bugs.launchpad.net/sbcl/+bug/789817/comments/1
I still think that this is not the right fix but withdraw my claim that there is no bug here. Please see also https://bugs.launchpad.net/sbcl/+bug/789817/comments/2
Maybe it matters that I'm not using the suggested file naming scheme. A file would be named e.g. ~/Music/Röyksopp/Remind Me - Single/01 Remind Me (Someone Else's Radio Remix).m4a
I'm not entirely sure what you're asking. It seems sbcl's [`sb-ext:run-program`](http://www.sbcl.org/manual/#Running-external-programs) does accept the keyword `:pty` but other run-program implementations do not. So if you rely on that feature, you'll...
That's a surprisingly difficult question, to be honest. Maybe a year ago, external-program's `run`/`start` and uiop's `run-program`/`launch-program` each had their upsides and downsides. I've then put effort into improving the...
> Although it's not in CCL and ECL [..] - Actually, CCL has a `:pty` option: https://github.com/Clozure/ccl/blob/master/level-1/linux-files.lisp#L1449 - And so does CMUCL: https://gitlab.common-lisp.net/cmucl/cmucl/blob/master/src/code/run-program.lisp#L459 - But ECL does not: https://gitlab.com/embeddable-common-lisp/ecl/blob/develop/src/lsp/process.lsp#L97 -...