Comment on What are the recommended scripting languages for complex shell scripts beyond bash?

ctr1@fl0w.cc ⁨1⁩ ⁨year⁩ ago

I usually use Awk to do the heavy lifting within my Bash scripts (e.g. arg parsing, filtering, stream transformation), or I’ll embed a Node.JS script for anything more advanced. In some cases, I’ll use eval to process generated bash syntax, or I’ll pipe into sh (which can be a good way to set up multiprocessing). I’ve also wanted to try zx, but I generally just stick to inlining since it saves a dependency.

source
Sort:hotnewtop