linux expect 的基本使用
expect -c "
set timeout -1;
spawn ssh root@192.168.6.132;
expect {
*(yes/no)* {send yes\r ;exp_continue;}
*password* {send 123456\r ;exp_continue;}
eof {exit 0 }
}";
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31506529/viewspace-2199362/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【Linux】命令expect使用詳解Linux
- linux expectLinux
- Linux下expect安裝Linux
- 使用Linux expect批次巡檢Linux Aix Solaris磁碟使用率指令碼LinuxAI指令碼
- expect使用例項
- Linux基本使用Linux
- /usr/bin/expect的簡單使用
- Linux NTP工具的基本使用Linux
- Linux read命令的基本使用!Linux
- expect安裝及使用
- Linux 基本命令 -------- tail 的使用LinuxAI
- linux 路由基本命令的使用Linux路由
- Linux系統中expect該如何使用?有哪些常用命令?Linux
- Linux iostat命令基本使用LinuxiOS
- Linux vmstat命令基本使用Linux
- Linux shutdown關機命令的基本使用!Linux
- 【expect】用expect實現scp/ssh-copy-id的非互動
- linux使用者管理基本命令Linux
- anticipate和expect的區別
- 二、Linux系統安裝和基本使用Linux
- linux三劍客(grep、sed、awk)基本使用Linux
- shell-6 expect
- linux下expect環境安裝以及簡單指令碼測試Linux指令碼
- Linux系統的基本操作Linux
- Linux下的基本指令(一)Linux
- linux useradd命令的基本用法Linux
- linux基本指令Linux
- linux基本操作Linux
- CentOS使用expect批次遠端執行指令碼和命令CentOS指令碼
- mongoose的基本使用Go
- Vagrant 的基本使用
- Vuex的基本使用Vue
- JSCore的基本使用JS
- ContentProvider的基本使用IDE
- Promise的基本使用Promise
- APScheduler的基本使用
- selenium的基本使用
- DailyRollingFileAppender的基本使用AIAPP