Skip to content

Instantly share code, notes, and snippets.

@rgerganov
Created August 17, 2018 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rgerganov/356b0f1a5ad97e0727ba6f882de51570 to your computer and use it in GitHub Desktop.
Save rgerganov/356b0f1a5ad97e0727ba6f882de51570 to your computer and use it in GitHub Desktop.
filter
#!/usr/bin/python
import sys
for line in sys.stdin:
if 'url:' in line:
print line
sys.stdout.flush()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment