為了解決不同網路空間的問題,本來是想通過改變環境變數的方式,不過最終還是
選擇了在shell指令碼下,選擇了網路空間後執行指令碼。
同時這個庫,還可以實現相應的檔案傳輸功能,這也是比較划算的乙個功能。
#! /usr/bin/python
#coding:utf-8
#auther:vchao
#16.12.16
import paramiko
import paramiko.client as client
cc = client.sshclient()
cc.set_missing_host_key_policy(paramiko.autoaddpolicy())
#this line make sure that you can connect successfully
#if the hosts is not in the known list
cc.connect( "192.168.50.32",password = "123456",look_for_keys=false)
stdin,stdout,sdterr = cc.exec_command("tor")
print stdout.readlines()
cc.close()
sqlplus dbtool自動登入指令碼
shell中呼叫sqlplus sqlplus s user pwd datebasespool b.txt select from a spool off exit eofcat b.txt tr d b.txt shell中呼叫dbtool dxyyt kefu dbtool cxtyd rw ...
ssh自動登入指令碼
使用vpn,每次都要在terminal上重複輸入命令 ssh d port user host 出來密碼提示符後,把複雜的密碼拷貝下來,然後貼上到terminal,敲回車.終於忍受不了這樣的重複了,於是用shell寫乙個可以自動登入的指令碼 usr bin expect f set port por...
ftp指令碼自動登入
在windows下非常簡單,windows下的ftp客戶端有乙個 s引數可以帶乙個檔案,把所有在ftp命令列下要輸入的內容照原樣輸入到這個檔案中,用ftp s去執行就可以。例如 open 10.60.56.90 whb123456 get test close bye把這個檔案儲存為autologi...