#!/usr/bin/expect
spawn ssh derrick@$abc123.net
expect "password"
send "helloworld\n"
send "cd /tmp\n"
send "sh rename.sh\n" # this shell script will get a list of files and rename each file
send "exit\n"
expect eof
問題は、スクリプトが'rename.sh'
開始されてから 3 秒以内に、まだ実行されていない間に終了することです。'expect'
'rename.sh'
私の質問は、「rename.sh」の実行が終了するまで待機するスクリプトを期待させるにはどうすればよいですか?