使用以下 AWK 程序:
#!/usr/bin/awk -f
BEGIN { FS=":" }
NR==1 { next; }
/^[1]/ { print $0; count++; }
END { printf("%d lines identified. File processing complete", count) }
我正在尝试以下方式将数据传递给脚本:
cat bio.data | bio.awk
不幸的是,shell 响应“bio.awk: command not found”。
在发出命令之前,我已经使用 chmod +x 对 bio.awk 文件进行了更改。
谢谢。