Advertisement
goatbar

Translation for Ashton

Feb 9th, 2013
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. #!/usr/bin/env python
  2.  
  3. # rseed -sf $file | grep Clock | awk '{print $4}'
  4. # translated to python...
  5.  
  6. import subprocess
  7.  
  8. for line in subprocess.check_output(['rseed', '-sf', 'file']):
  9.     if 'Clock' in line:
  10.         print line.split()[3]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement