コード例 #1
0
ファイル: s60ctl.py プロジェクト: mwicat/s60ctl
def run_script(host, path):
    conn = init_conn(host)
    f = conn.modules.__builtin__.open(PYRUN_RC, 'w')
    f.write(path)
    f.close()
    s60util.launch(conn, PYRUN)
コード例 #2
0
def run_script(host, path):
    conn = init_conn(host)
    f = conn.modules.__builtin__.open(PYRUN_RC, 'w')
    f.write(path)
    f.close()
    s60util.launch(conn, PYRUN)
コード例 #3
0
ファイル: s60ctl.py プロジェクト: mwicat/s60ctl
def run(args):
    conn = init_conn(args.host)
    command = CMD_SEP.join(args.args)
    s60util.launch(conn, args.path, command)
コード例 #4
0
def run(args):
    conn = init_conn(args.host)
    command = CMD_SEP.join(args.args)
    s60util.launch(conn, args.path, command)