SecureCRT自動上傳檔案python指令碼

來源:互聯網
上載者:User

標籤:let   對話方塊   crt   upload   tran   zmodem   dem   mux   對話   

本人在ubuntu下使用SecureCRT,上傳檔案習慣用rz命令。每次上傳都彈對話方塊選擇檔案按確定後才上傳,感覺很費力。最後自己摸索整理出一個指令碼。

使用方法是,在【Script】菜單點【Run...】 然後選擇這個指令碼【Run】就可以自動上傳了。挺方便的~

# $language = "python"# $interface = "1.0"def Main():    crt.Screen.Synchronous = True    crt.Screen.Send("rm -rf demofile\n") # 先刪除舊檔案    crt.Screen.WaitForString("[[email protected] xx]$ ")    crt.FileTransfer.AddToZmodemUploadList("/your_path/bin/demofile") # 添加檔案到上傳列表    crt.FileTransfer.ZmodemUploadAscii = True # 加了這個執行rz時就不會彈選擇檔案對話方塊了。    crt.Screen.Send("rz\n")    crt.Screen.WaitForString("[[email protected] xx]$ ")    crt.FileTransfer.ZmodemUploadAscii = False # 設定調回來Main()

 

技術還是比較弱渣啊~~~不會用那些tmux

SecureCRT自動上傳檔案python指令碼

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.