Process.Start fails with 'unterminated quoted string' in Linux
I am trying to run 7z to extract some files. The command seems to work if I just run it from the shell directly, but not from code. Maybe it's not the exact same, and I don't realize it.
So I'm doing this:
The config file is a list of key=value pairs that get loaded into the static
Config
class. So, it works for Windows:
but not for Linux:
Seems the ash command there fails with an error:
x: line 0: syntax error: unterminated quoted string
2 Replies
that would be a lot easier to use a lib
I'm just trying to run a shell command, this doesn't require a whole library...