Tagged Questions
16
votes
6answers
633 views
How stable are Unix shell “stdin/stdout APIs”?
grepping, awking, sedding, and piping are day-to-day routine of a user of any Unix-like operating system, may it be on the command line or inside a shell script (collectively called filters from now ...
4
votes
1answer
151 views
Program to filter lines by passing them to an external program?
I'm looking for a program to use an external program to filter the lines of a stream - pretty much a version of grep that, for each line, prints or suppresses it based on whether the specified program ...