Skip to content

Instantly share code, notes, and snippets.

@Heasummn
Created December 21, 2015 23:53
Show Gist options
  • Save Heasummn/43a0168e9097cc02e13e to your computer and use it in GitHub Desktop.
Save Heasummn/43a0168e9097cc02e13e to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
import os
while True:
args = input('> ').split()
line = args
os.execvp(args[0], line)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment