This commit is contained in:
Luk Lu
2021-07-10 15:36:28 +08:00
parent d8c7f0095e
commit 9564a77600
3 changed files with 26 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/expect
## Usage: expect this.sh [hostname] [port] [username] [password]
# Usage: expect this.sh [hostname] [port] [username] [password]
set timeout 30
spawn ssh -p [lindex $argv 1] [lindex $argv 2]@[lindex $argv 0]
@@ -9,7 +9,7 @@ expect {
{send "yes\n";exp_continue}
"password:"
{send "[lindex $argv 3]\n";exp_continue}
":~]"
":~"
{send "su\n";exp_continue}
"Password:"
# {send "[lindex $argv 3]\ncd /faronear\n"}