a0bd250963
this just makes things marginally simpler
10 lines
No EOL
173 B
Text
10 lines
No EOL
173 B
Text
set timeout 10
|
|
|
|
spawn socat unix-connect:vm/console -
|
|
send "\r\n"
|
|
expect "#"
|
|
send "echo HELLO WORLD > /hello\r\n"
|
|
expect "#"
|
|
send "cat /hello\r\n"
|
|
expect 'HELLO WORLD'
|
|
close |