Advertisement
narenarya

sample

Feb 26th, 2015
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. #!/usr/bin/python
  2. import sys
  3.  
  4. fil = sys.argv[-1]
  5.  
  6. with open(fil,'r') as f:
  7.     for i in f.readlines():
  8.     #Do stuff here with lines in program
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement