在expect脚本中使用awk

时间:2015-08-11 02:55:06

标签: bash awk pipe expect

我试图制作一个期望脚本,并且需要在脚本旁边使用awk或sed。 我也有一个名为TimeBased_CLI.ini的文件。

192.168.1.22 is rhost
2022 is port

我的目标是将文件作为变量放入脚本中。

这是我目前的错误脚本

#!/usr/bin/expect -f
set timeout 10

#INPUT Vars from TimeBased_CLI.ini file
set rhost "[exec grep rhost ./TimeBased_CLI.ini | awk "/[[:blank:]]*is[[:blank:]]*/ \{print \$1 \}"]"
send_user "$rhost\n"

它给了我

-sh-4.1$ ./test.exp 
invalid command name ":blank:"
    while executing
":blank:"
    invoked from within
"[:blank:]"
    invoked from within
"exec grep rhost ./TimeBased_CLI.ini | awk "/[[:blank:]]*is[[:blank:]]*/ \{print \$1 \}""
    invoked from within
"set rhost "[exec grep rhost ./TimeBased_CLI.ini | awk "/[[:blank:]]*is[[:blank:]]*/ \{print \$1 \}"]""
    (file "./test.exp" line 5)

有人可以纠正我吗?

#[Sovled]

我使用的最终命令就像

set rhost "[exec awk {$NF ~ /rhost/ {print $1;}} TimeBased_CLI.ini]"

此命令的shell格式为

awk '$NF ~ /rhost/ {print $1;}' TimeBased_CLI.ini

2 个答案:

答案 0 :(得分:1)

单引号不引用Tcl的机制,因此支持awk表达式。

% set awkCmd {/[[:blank:]]*is[[:blank:]]*/ {print $1}}
/[[:blank:]]*is[[:blank:]]*/ {print $1}
% set rhost [exec grep rhost ./TimeBased_CLI.ini | awk $awkCmd]
192.168.1.22

参考: Frequently Made Mistakes in Tcl

答案 1 :(得分:0)

只需使用all tcl解决方案。

set fd [ open ./TimeBased_CLI.ini "r" ] 
set buffer [read $fd ] 
catch { close $fd }
# assuming line we are looking for is "rhost is <some ip>" 
if { [ regexp {rhost[ ]*is[ ]*([0-9\.]+)} $buffer match rhost] == 0 } {
    send_user "rhost not found!\n"
} else { 
    send_user "rhost is $rhost\n"
}