expect -c "
set timeout 1200;
spawn kinit hdfs
expect {
\"*Password*\" {send \"${FIhdfsPW}\r\";}
}
expect eof;"
一段比较好用的shell脚本
#!/bin/bash
#scp tar.gz to httpd
expect -c "
spawn ssh root@IP
expect {
\"*yes/no*\"
{
send \"yes\r\"
}
}
expect eof;"
expect -c "
spwan ssh root@IP
expect {
\"*Are*\"
{
send \"yes\r\"
}
}
expect eof;"
expect -c "
spawn scp demo root@10.90.176.170:/lujing/
expect {
\"*Password*\"
{
send \"mima@123\r\"
}
}
expect eof;"