本文整理汇总了Python中GNUScreen.move方法的典型用法代码示例。如果您正苦于以下问题:Python GNUScreen.move方法的具体用法?Python GNUScreen.move怎么用?Python GNUScreen.move使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GNUScreen
的用法示例。
在下文中一共展示了GNUScreen.move方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: out
# 需要导入模块: import GNUScreen [as 别名]
# 或者: from GNUScreen import move [as 别名]
# pids=sc.sort_by_ppid(pids)
thepid = pids[len(pids) - 1]
thedir = sc.get_pid_info(thepid)[0]
out(thedir, bPrint)
os.chdir(thedir)
# command='screen %s -X screen' % (session_arg)
command = "screen"
if len(sys.argv) > 2:
command += ' -t "%s"' % (" ".join(["%s" % v for v in sys.argv[2:]]))
else:
command += ' -t "%s"' % (thedir)
for arg in sys.argv[2:]:
command += " " + arg
out(command, bPrint)
os.system(command)
windows_new = sc.parse_windows(sc.get_windows(session))[0]
out(str(windows_new), bPrint)
windows_diff = sc.find_new_windows(windows_old, windows_new)
target = windows_diff[0]
out("%s to %s" % (target, cwin), bPrint)
moveto = int(cwin) + 1
sc.move(int(target), moveto, True, session)
# os.system('screen %s -p %s -X title blah'%(session,endpos))
示例2: int
# 需要导入模块: import GNUScreen [as 别名]
# 或者: from GNUScreen import move [as 别名]
command += primer
command += [thedir]
try:
program = (sys.argv)[ARGSNUM]
command += (sys.argv)[ARGSNUM:]
except:
command += [os.getenv('SHELL')]
#print command
#os.spawnvp(os.P_WAIT, SCREEN , command)
f = os.popen2(command)[1]
nwin = f.readline().split(':')[1].strip()
f.close()
nwin = '-'
if tgroup != '-1':
# '-' may be used instead of nwin
os.spawnv(os.P_WAIT, SCREEN , ['screen', '-S', session, '-p', nwin, '-X', 'group', tgroup])
if nwin != '-1':
if number != '-1':
sc.move(int(nwin), int(number), True, session)
print(number)
elif bRenumber:
targ_num = int(cwin) + 1
sc.move(int(nwin), targ_num, True, session)
print(targ_num)
else:
print(nwin)