Skip to content

Instantly share code, notes, and snippets.

@cbednarski
Created August 8, 2013 01:22
Show Gist options
  • Save cbednarski/6180620 to your computer and use it in GitHub Desktop.
Save cbednarski/6180620 to your computer and use it in GitHub Desktop.
Simple wrapper for system calls in python
def call(command):
return subprocess.check_output(command.split(' '))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment