Skip to content

Instantly share code, notes, and snippets.

@fragmede
Created February 27, 2015 18:51
Show Gist options
  • Save fragmede/7ac83db70315ce2a0025 to your computer and use it in GitHub Desktop.
Save fragmede/7ac83db70315ce2a0025 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import os
import sys
while True:
try:
filename = raw_input()
except EOFError:
sys.exit(0)
try:
os.stat(filename)
print filename
except OSError:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment