Exemple #1
0
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()
#coding: utf-8

from show_help import *
from op import *

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

print show_help(i)
print op(i)