编译有问题

时间:2019-01-12 03:31:13

标签: awk

请问我有什么错?我的文件中有一个代码

file.awk:

BEGIN { CONVFMT="%0.17f" }
/D Format/ { in_f_format=0; next }
/F Format/ { in_f_format=1; next }
in_f_format != 1 { next }
!($1 ~ /^[1-9]/) { next }
$1 == 11 { prt(180,3.141592653589); next }
$1 == 15 { prt(100,1); next }
$1 == 20 { prt(10,1); next }
$1 == 26 { next }
{ prt(1,1) }

function prt(mult, div) {
print trunc($5 * mult / div) ORS trunc($6 * mult / div)
}

function trunc(n, s) {
s=index(n,".")
return (s ? substr(n,1,s+6) : n)
}

我写:

chmod +x file.awk 
./file.awk

到终端,我得到了这些错误:

./file.awk: řádek 1: BEGIN: příkaz nenalezen
./file.awk: řádek 2: /D: Adresář nebo soubor neexistuje
./file.awk: řádek 2: next: příkaz nenalezen
./file.awk: řádek 3: /F: Adresář nebo soubor neexistuje
./file.awk: řádek 3: next: příkaz nenalezen
./file.awk: řádek 4: in_f_format: příkaz nenalezen
./file.awk: řádek 5: chyba syntaxe poblíž neočekávaného tokenu „{“
./file.awk: řádek 5: `!($1 ~ /^[1-9]/) { next }'

请问哪里出了错?

编辑 相似的脚本

BEGIN { CONVFMT="%0.17f" }
/D Format/ { in_f_format=0; next }
/F Format/ { in_f_format=1; next }
in_f_format != 1 { next }
!($1 ~ /^[1-9]/) { next }
$1 == 35 { print t($5), t($6) }

function trunc(n, s) {
s=index(n,".")
return (s ? substr(n,1,s+6) : n)
}

给出错误:

fatal: function `t' not defined

我想用这个输入写东西

                      Input-Output in F Format

No.  Curve    Input Param.        Correction     Output Param.    Standard Deviation
26      0  56850.9056460000     -0.0017608883  56850.9038851117      0.0016647171
35      1      0.2277000000      0.0011369754      0.2288369754      0.0014780395
35      2      0.2294000000      0.0000417158      0.2294417158      0.0008601513
35      3      0.2277000000      0.0007425066      0.2284425066      0.0022555311
35      4      0.2298000000     -0.0000518690      0.2297481310      0.0010186846
35      5      0.2295000000      0.0000793572      0.2295793572      0.0014667137
35      6      0.2300000000      0.0000752449      0.2300752449      0.0006258864
35      7      0.2307000000     -0.0001442591      0.2305557409      0.0002837569
35      8      0.2275000000      0.0007358355      0.2282358355      0.0007609550
35      9      0.2292000000      0.0003447650      0.2295447650      0.0007148005
35     10      0.2302000000     -0.0001854710      0.2300145290      0.0006320668
35     11      0.2308000000     -0.0002064324      0.2305935676      0.0008911070
35     12      0.2299000000     -0.0000202967      0.2298797033      0.0002328860
35     13      0.2298000000      0.0000464629      0.2298464629      0.0011609539
35     14      0.2307000000     -0.0003654521      0.2303345479      0.0006827961
35     15      0.2294000000      0.0002157908      0.2296157908      0.0003253584


                      Input-Output in D Format

$ 5和$ 6中位于35开始的行中的数字。

编辑2 我编辑了f函数的位置,例如

BEGIN { CONVFMT="%0.17f" }
function trunc(n, s) {
s=index(n,".")
return (s ? substr(n,1,s+6) : n)
}
/D Format/ { in_f_format=0; next }
/F Format/ { in_f_format=1; next }
in_f_format != 1 { next }
!($1 ~ /^[1-9]/) { next }
$1 == 35 { print t($5), t($6) }

3 个答案:

答案 0 :(得分:2)

更新: 与OP聊天(我也在我的评论中提到),OP需要将函数的名称从t更改为实际函数然后。想在这里进行更新,以便所有人都知道。



可能有2种解决方案。

第一个: 在shellscript中提到awk,然后将其作为shell脚本运行。

cat script.ksh
awk 'BEGIN { CONVFMT="%0.17f" }
/D Format/ { in_f_format=0; next }
/F Format/ { in_f_format=1; next }
in_f_format != 1 { next }
!($1 ~ /^[1-9]/) { next }
$1 == 11 { prt(180,3.141592653589); next }
$1 == 15 { prt(100,1); next }
$1 == 20 { prt(10,1); next }
$1 == 26 { next }
{ prt(1,1) }

function prt(mult, div) {
print trunc($5 * mult / div) ORS trunc($6 * mult / div)
}

function trunc(n, s) {
s=index(n,".")
return (s ? substr(n,1,s+6) : n)
}' Input_file

授予script.ksh适当的执行权限,并像运行时一样运行它。

第二个: 像这样运行它作为awk脚本运行:

awk -f awk_file Input_file

答案 1 :(得分:1)

使用它的规范方法(不确定是否正确)是这样的:

awk -f file.awk datafile

或类似这样的管道方式:

cat datafile | awk -f file.awk

file.awk与awk的脚本文件相同(名称可以更改)。
datafile是包含您要处理的数据的文件。

并且无需chmod awk文件即可使用它。

更新:
但是感谢基思在评论中所提到的,您也可以那样做。
把这一行:

#/usr/bin/awk -f

位于file.awk的开头。(假设您的awk可执行文件位于该位置)。
chmod +x file.awk之后,您可以像这样执行它:

./file.awk datafile

答案 2 :(得分:1)

没有任何提示行,shell认为您的脚本是Shell脚本。要使其executable as an awk script,必须使用适当的shebang行:

cat <<'EOF' > awkscript
#!/usr/bin/awk -f

BEGIN { print "Hello, world!" }
EOF
chmod +x awkscript

其中/usr/bin/awk是awk可执行文件的路径(可通过type awk找到)。重要的是-f标志。

现在您可以将其作为独立脚本运行:

$ ./awkscript 
Hello, world!