How to automatically log in to a specified directory by iterm

at present, I am implementing such a shell, that can successfully log in without secret, but cannot cd to / data/bak/log, for advice

-sharp!/usr/bin/expect

set timeout 30
spawn ssh -p [lindex $argv 0] [lindex $argv 1]@[lindex $argv 2]
expect {
        "(yes/no)?"
        {send "yes\n";exp_continue}
        "password:"
        {send "[lindex $argv 3]\n"}
        send "cd /data/bak/log\r"
}
interact
Mar.20,2021

after send completes the password, you should expect something instead of send "cd" directly, such as waiting for a command prompt, otherwise the cd command will be sent too early.



does anyone know? It hasn't been solved yet

Menu