Created
July 15, 2013 02:43
-
-
Save Caustic/5997170 to your computer and use it in GitHub Desktop.
Fun with python.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
from subprocess import call | |
def main(): | |
args = sys.argv | |
return call(args) | |
if __name__ == '__main__': | |
sys.exit(main()) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment