1 2 3 4 5 6 7 8 9 10 11
proc sos_start {} { global SOS send_user "starting $SOS" spawn $SOS expect { -re ".*root.*" { perror "Can't start $SOS"; exit 1 } } } sos_start