@[email protected] to [email protected] • 2 months agoGNU awk idioms explainedlearnbyexample.github.iomessage-square1fedilinkarrow-up116cross-posted to: [email protected]
arrow-up116external-linkGNU awk idioms explainedlearnbyexample.github.io@[email protected] to [email protected] • 2 months agomessage-square1fedilinkcross-posted to: [email protected]
minus-squarepelyalinkfedilink3•2 months agoawk is in a strange position between simple grep commands and full-featured Python programs. It’s powerful but too domain-specific, and if you learned how to write multiline sed scripts you don’t need awk anymore. And yes, you can do python -e “…” for (really long) Python one-liners.
awk is in a strange position between simple grep commands and full-featured Python programs. It’s powerful but too domain-specific, and if you learned how to write multiline sed scripts you don’t need awk anymore.
And yes, you can do
python -e “…”
for (really long) Python one-liners.