我正在通过期望发送发送 awk 命令,当我发送时我收到错误但我无法读取 1 没有这样的变量
我确实使用了 {{}} mechansim,但我确实工作了,
expect "$prompt" {
send "awk {{print $1}} /mytest/test.log\r"
}
我尝试使用 eascapse 序列 \,但我没有找到任何响应 expect_out(buffer),..etc
expect "$prompt" {
send "awk '{print \$1}' /mytest/test.log\r"
}
我也尝试使用 exec 命令
expect "$prompt" {
send "exec awk {{print $1}} /mytest/test.log\r"
}