shell实现在远程服务器上创建文件时间:2025-01-31 08:23:18spawn ssh ${username}@${host} expect { "yes/no" { send "yes\r"; exp_continue } "password:" { send "${password}\r" } } expect "100%" send "touch /home/qappsom/ \r" expect "eof"