|
|
|
|
|
by coldtea
2362 days ago
|
|
Small staple unix programs, pipes, job control etc are all great ideas. POSIX shells languages however, are awfully designed (including zsh/fish for historical compatibility with POSIX concepts reasons). Something close to TCL as a shell would be much better. |
|
They also neglect parallel, concurrent, async programming. Which agan is fine for a shell language. The shell does have use cases for simple parallel processing and you can delegate to dedicated unix tools for that and it works great. If you need more, you're expected to jump into a more powerful environment.
So they're poor in data structure variety, and more interesting (nonsequential) ways of executing programs, which, again, is fine for a shell language, but those were exactly the things I wanted. I wanted to pipe and tee a bunch of programs programs into one "executable graph" a la dataflow programming using bash or something similar, but quickly understood that due to the above reasons I need a different environment. I'm still on the lookout for good dataflow programming environments.