格式
#舶衬!/bin/bash
shell 語句
/usr/bin/expect<<-EOF
expect語句
expect eof
EOF
實例
#!/bin/bash
if [ $# == 3 ];then
user=$1
oldpasswd=$2
newpasswd=$3
/usr/bin/expect<<-EOF
spawn su $user
expect " :"
send " $oldpasswd\r"
expect eof
EOF
fi
注意:
/usr/bin/expect<<-EOF
expect語句
EOF
EOF部分要相互對應辰狡,即 EOF 是可變的土匀,前后一致即可。