ssh是遠端登入命令,-l選項是最常用的選項,下面是我的一些總結
遠端登入:ssh -l username ip
# 遠端登入到 10.175.23.9
ssh -l root2 10.175.23.9
執行遠端命令(不登入):ssh -l username ip command
# 不遠端登入到 10.175.23.9,但通過命令檢視10.175.23.9上面的nginx的程序情況
ssh -l root2 10.175.23.9 ps -ef|grep nginx
#!/bin/shecho "--------------------flushall_all_redis init--------------------"
server09=("root1" "root1_pwd")
server10=("root2" "root2_pwd")
function exe()
}\"*password:\"
}expect eof"}
echo ""
echo "--------------------start reflush redis from 10.175.23.9--------------------"
exe "spawn ssh -l $ 10.175.23.9 \"/home/weihu/bin/flushall_redis.sh\"" "$"
echo ""
echo "--------------------start reflush redis from 10.175.23.10--------------------"
exe "spawn ssh -l $ 10.175.23.10 \"/home/weihu/bin/flushall_redis.sh\"" "$"
上面例子中的 /home/weihu/bin/flushall_redis.sh 即為各自主機上面需要執行shell檔案(用於重新整理各自主機redis快取的)。例子中的重點就是exe函式、以及ssh -l 兩部分。
adb shell logcat 命令的運用
android 開發的程式設計師開發程式的時候 一定為log而苦惱吧。eclipse老是log找不到,是不是很讓人不爽,雖然android studio的logcat功能很不錯,蛋也沒有在命令列terminal中列印出來更方便。adb logcat 這個命令會輸出log的格式為日誌時間,程序號,執行...
maya命令 addAttr 運用。
import maya.cmds as cmds cmds.file new 1,f 1 sphere xform,sphere shape cmds.polysphere n earth cmds.addattr sphere xform,attributetype float shortname...
makefile命令基本運用(一)
makefile命令基本運用 一 一 makefile介紹 乙個工程中的原始檔不計其數,其按型別 功能 模組分別放在若干個目錄中,makefile定義了一系列的規則來指定,哪些檔案需要先編譯,哪些檔案需要後編譯,哪些檔案需要重新編譯,甚至於進行更複雜的功能操作,因為 makefile就像乙個shel...