字符串比较不正常

时间:2013-12-26 07:56:42

标签: linux bash

我的代码:

x=$(awk -v i=$h -v j=17 'FNR == i {printf "%s ", $j}' newiptables.log)
s="SPT=80"

引用的日志文件是:

Dec 26 09:17:51 localhost kernel: IN=eth0 OUT= MAC=00:10:c6:a8:da:68:00:90:7f:9c:50:5a:08:00 SRC=198.252.206.16 DST=10.128.1.225 LEN=313 TOS=0x00 PREC=0x00 TTL=64 ID=59334 PROTO=TCP SPT=80 DPT=56506 WINDOW=46535 RES=0x00 ACK PSH URGP=0 
Dec 26 09:17:52 localhost kernel: IN=eth0 OUT= MAC=00:10:c6:a8:da:68:00:90:7f:9c:50:5a:08:00 SRC=198.252.206.16 DST=10.128.1.225 LEN=1440 TOS=0x00 PREC=0x00 TTL=64 ID=47303 PROTO=TCP SPT=80 DPT=56506 WINDOW=46535 RES=0x00 ACK URGP=0 
Dec 26 09:17:52 localhost kernel: IN=eth0 OUT= MAC=00:10:c6:a8:da:68:00:90:7f:9c:50:5a:08:00 SRC=198.252.206.16 DST=10.128.1.225 LEN=1440 TOS=0x00 PREC=0x00 TTL=64 ID=47559 PROTO=TCP SPT=80 DPT=56506 WINDOW=46535 RES=0x00 ACK URGP=0

然后需要检查脚本中的下一个条件是:

if [[ "$x" == "$s" ]]
then 
 < process if condition is true>
else
 < process if condition is false>
fi

if条件不起作用

2 个答案:

答案 0 :(得分:3)

观察您的awk命令:

printf "%s ", $j

您打印一个由于测试if [[ "$x" == "$s" ]]失败而导致的尾随空格。

消除printf

中的空格
printf "%s", $j

或者,您可以使用binary operator =~(当然,视您的需要而定):

if [[ "$x" =~ "$s" ]]

答案 1 :(得分:1)

必要的修复:

s="SPT=80"   # Not STP=80

此问题已修复。

可能需要修复:

if [[ "$x" == "$s" ]]  # Space between if and [[ highly recommended
then : it matches
else : it does not match
fi

如评论中所述,在"%s "脚本中使用带有尾随空格的awk意味着尾随空格存储在"$x"中,这将打破与{的比较{1}}。