I'm trying to run some expect language, and grep/parse the output all in one script. I want to grep the output of and look for "error" (I should note that standard linux commands like awk, sed, grep, etc are not available on the remote VPlexcli machine)
#!/bin/bash
expect - << EOF
# connect to vplexcli
spawn vplexcli
# Look for login prompt
expect -re "Name:"
# Send login
send "service\r"
# Look for password prompt
expect -re "Password:"
# Send password
send "letmein123\r"
expect -re "VPlexcli:/> "
send "ll /clusters/cluster-1/storage-elements/\r"
expect -re "VPlexcli:/> "
send "exit\r"
EOF
Output looks like this:
VPD83T3:6006016036c02c00e217465c0516e211 ok APM00121002844.SPA APM00121002844.SPB both 0x002e000000000000 implicit-explicit
VPD83T3:6006016036c02c00e4dc0671f907e211 ok APM00121002844.SPA APM00121002844.SPB both 0x0010000000000000 implicit-explicit
VPD83T3:6006016036c02c00ec79619bdd08e211 error APM00121002844.SPA APM00121002844.SPB none implicit-explicit
VPD83T3:6006016036c02c00f0bfd3dedd08e211 error APM00121002844.SPA APM00121002844.SPB none implicit-explicit
expect
the string "error" in your expect script, andexit
with an error code if matched. – angus Dec 10 '12 at 17:29