It's just a preference thing, I loathe the small program chaining style and cannot work with it at all. Give me a python script and I'm good though. I can't for the life of me imagine why people would want to do pseudo programming through piping magic when chaining is so limited compared to actual programming
samatman|1 year ago
I commonly write little python scripts to filter logs, which I have read from stdin. That means I can filter a log to stdout:
Or filter them as they're generated: Or write the filtered output to a file: Or both: It would be possible, I suppose, to configure a single python script to do all those things, with flags or whatever.But who on Earth has the time for that?
dgfitz|1 year ago