Remove obsolete stuffs
This commit is contained in:
10
bin/python/python-3.13/Lib/test/subprocessdata/qgrep.py
Normal file
10
bin/python/python-3.13/Lib/test/subprocessdata/qgrep.py
Normal file
@@ -0,0 +1,10 @@
|
||||
"""When called with a single argument, simulated fgrep with a single
|
||||
argument and no options."""
|
||||
|
||||
import sys
|
||||
|
||||
if __name__ == "__main__":
|
||||
pattern = sys.argv[1]
|
||||
for line in sys.stdin:
|
||||
if pattern in line:
|
||||
sys.stdout.write(line)
|
||||
Reference in New Issue
Block a user