Skip to content

Instantly share code, notes, and snippets.

@Caustic
Created July 15, 2013 02:43
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 Caustic/5997170 to your computer and use it in GitHub Desktop.
Save Caustic/5997170 to your computer and use it in GitHub Desktop.
Fun with python.
#!/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