Removed the Requirement to Install Python and NodeJS (Now Bundled with Borealis)
This commit is contained in:
10
Dependencies/Python/Lib/test/subprocessdata/qgrep.py
vendored
Normal file
10
Dependencies/Python/Lib/test/subprocessdata/qgrep.py
vendored
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