예제 #1
0
파일: console.py 프로젝트: esehara/gimawari
def begin():
    if len(args) == 1:
        show_help()
        sys.exit()
    run_string = parse_args(args)
    print "実行するわ => " + run_string
    print subprocess.check_output(run_string, shell=True)
    exit()
예제 #2
0
#coding: utf-8

from show_help import *
from op import *

i = raw_input().decode('utf-8')

print show_help(i)
print op(i)