• 大小: 12.41M
    文件类型: .7z
    金币: 2
    下载: 2 次
    发布日期: 2023-06-18
  • 语言: 其他
  • 标签: 其他  

资源简介

Xshell_Plus破解永久版.7z

资源截图

代码片段和文件信息

def Main():
xsh.Session.Open(“C:\\...\\NetSarang\\Xshell\\Sessions\\New Session.xsh“)
xsh.Screen.Synchronous = True #True or False
xsh.Session.Sleep(1000)

#*** WaitForString ***
xsh.Screen.WaitForString(“aaa“) # input “aaa“ in Terminal

#*** Send ***
xsh.Screen.Send(“cat /etc/passwd“)
xsh.Screen.Send(‘\r‘)
xsh.Session.Sleep(1000)

#*** Get Clear ***
ScreenRow = xsh.Screen.CurrentRow - 1
ReadLine = xsh.Screen.Get(ScreenRow 1 ScreenRow 40)
Items = ReadLine.split(‘:‘);
xsh.Dialog.MsgBox(Items[2])
xsh.Screen.Clear()

#*** Property ***
xsh.Screen.Synchronous = False
MsgProp = “Col:“ + str(xsh.Screen.CurrentColumn) + “ “
MsgProp = MsgProp + “Row:“ + str(xsh.Screen.CurrentRow) + “ “
MsgProp = MsgProp + “TermCol:“ + str(xsh.Screen.Columns) + “ “
MsgProp = MsgProp + “TermRow:“ + str(xsh.Screen.Rows) 
xsh.Dialog.MsgBox(MsgProp)

评论

共有 条评论