about summary refs log tree commit diff
path: root/pkgs/profpatsch/execline/run-cmd-line-block.rs
Commit message (Collapse)AuthorAgeFilesLines
* pkgs/profpatsch/e: add debug outputProfpatsch2022-01-071-3/+15
|
* pkgs/profpatsch/e: fix by rewriting in rust and execing into blockProfpatsch2021-07-271-0/+33
calling `execlineb -c` has unfortunate quoting issues, cause for cornercases like arguments that contain spaces or `"` the result would be a completely broken command line. Instead, let’s do our own block construction in a small rust program (for speed). I tried implementing it in bash first but even prepending spaces to a string is a complete waste of time in that language.