shell|expect使用spawn 进行scp拷贝文件无法识别通配符

【shell|expect使用spawn 进行scp拷贝文件无法识别通配符】expect自动登录scp拷贝文件无法识别通配符
只需要在spawn 后边加上bash -c即可

#!/usr/bin/expectspawn bash -c "scp /home/test/* root@192.168.100.105:/home/test"expect { "yes/no" {send "yes\r"; exp_continue} "*password" {send "123456\r"} }expect "100%" expect eof


    推荐阅读