blob: 69906379a9b3876285dff230a528cad150d343ca [file] [log] [blame]
Gregory P. Smith51ee2702010-12-13 07:59:39 +00001"""When called with a single argument, simulated fgrep with a single
2argument and no options."""
3
4import sys
5
6if __name__ == "__main__":
7 pattern = sys.argv[1]
8 for line in sys.stdin:
9 if pattern in line:
10 sys.stdout.write(line)