我有一个文件,其中有一千多行,每行有一个 12 个字符的字符串。
我还有一个
awk
脚本,其中有一个函数。
#!/usr/local/bin/gawk -f
@include "home/user/functions.awk"
{
STRType=substr($0,27+23,2);
TYPEOUT=substr($0,28,3);
if(STRType == "O1")
{
filterTxtforfunc($0,"PRH1DCHK");
}
else
if(STRType=="H6")
{
print substr($0,28)
fflush()
}
else
if(STRType=="J7" && TYPEOUT=="000")
{
print substr($0,28)
fflush()
}
}
我想逐行读取
input.txt
文件,并使用每行的前 8 个字符作为 filterTxtforfunc
函数的输入。
我检查过类似的主题,但它们对我没有帮助。我没有可能使用Python、Jason以及除了shell脚本之外的其他语言和库。我用bash脚本编写了它,但现在我需要使用
getline
,因为不可能在awk文件中使用bash脚本。
这是我的 bash 脚本,可以按我想要的方式工作(但我不能在 awk 脚本文件中使用它):
filterTxtforfunc() {
echo does something
}
input_file="input.txt"
while IFS= read -r line; do
# Extract the first 8 characters from the line
code="${line:0:8}"
# Dynamically build the command and execute it
filterTxtforfunc "$0" "$code"
done < "$input_file"
我用过但不起作用的是:
BEGIN {
input_file="input.txt"
while ( (input_file | getline line) > 0 ) {
ARGV[ARGC++] = line
}
close(input_file)
}
input.txt是这样的:
WRM3BHIZ0004
NRB1SAPB0122
LRT1SYGM0114
KRF1LAEI0451
JRU1TEEE0764
ZRQ1LQWS0666
PRH1DCHK0904
...
也许是这样的:
awk '
# ...
function processfile (file, line,code) {
for (;;) {
e = getline line <file
if (e<0) exit 1
if (e==0) break
code = substr(line,1,8)
processline(line,code)
}
close(file)
}
# ...
'
定义
processline
函数。使用包含要处理的文件名称的字符串调用 processfile
。