Hi
I am trying to telnet to a Unit under test
from my SUSE Linux via expect script
following is my scrip
#!/usr/bin/expect
set tel 192.168.1.136
set port 6500
spawn telnet $tel $por
but my scrip do not telnet to unit but instead just executes the command as it is
the result
spawn telnet 192.168.1.136 6500
please help
Thank
HZ
I am trying to telnet to a Unit under test
from my SUSE Linux via expect script
following is my scrip
#!/usr/bin/expect
set tel 192.168.1.136
set port 6500
spawn telnet $tel $por
but my scrip do not telnet to unit but instead just executes the command as it is
the result
spawn telnet 192.168.1.136 6500
please help
Thank
HZ