异常'缓冲:' Windows awk结果中的字符串

时间:2016-03-17 06:15:36

标签: windows awk

你能救我吗? 当我在awk脚本中使用正则表达式时,奇怪的是我得到了缓冲:'消息以及如下所示。 这个问题在我的Windows 10(英语语言包)中没有发生,但我总是在Windows 10(韩语语言包)中看到这个问题。 我不确定该问题是否与Windows语言包有关,但在2台机器(韩语语言包)中也会出现同样的问题。

数据

Find 234
No
Find 111
no
test

AWK脚本

/Find[[:space:]]+[0-9]/ {   
print $0;   
}

输出

buffer: 2
buffer: 2
Find 234
buffer: 1
buffer: 1
Find 111

0 个答案:

没有答案