expect和shell变量互传

#!/bin/bash
input=$1
output=`expect <<EXP
log_user 0
puts $input
EXP
`
echo $output


你可能感兴趣的:(expect和shell变量互传)