|
|
|
|
|
by alexhutcheson
2210 days ago
|
|
POSIX shell is miserable for programming anything beyond a couple lines. It doesn't even have arrays[1], so you have no available container types within the interpreter itself. [1] Well, it has $@, which you can use as a general-purpose array with some hacks[2], but that's no way to live. [2] http://www.etalabs.net/sh_tricks.html |
|
But even the nicest shell doesn't solve the dependency problem like statically compiled programs. If I could take my currently running Python code and produce some artifact that would run with nothing other than the python binary I think we'd be in a much better place.
Ohh apparently all I've needed in my life is zipapps.