gawk程序中如何读取输入文件

发布于 2022-08-25 10:54:53 字数 243 浏览 10 评论 0

gawk可以在命令行上指定输入文件,比如gawk '/AAA/' in1.txt in2.txt
gawk也可以在程序中指定输出文件,比如gawk 'END { print 1 > "out1.txt" }'

那么,是否可以在程序中指定输入文件呢?
我想实现类似gawk '/AAA/ < "in1" { print $1 }'的功能。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

热血少△年 2022-09-01 10:54:53

我采取的解决方案是拆分成两个awk步骤,第一个awk进程输出需要读取的文件名,bash脚本把那些文件名传递给第二个awk进程命令行。

瞳孔里扚悲伤 2022-09-01 10:54:53

FILENAME

The name of the file that awk is currently reading. When no data files are listed on the command line, awk reads from the standard input and FILENAME is set to "-". FILENAME is changed each time a new file is read (see Reading Files). Inside a BEGIN rule, the value of FILENAME is "", since there are no input files being processed yet.1 (d.c.) Note, though, that using getline (see Getline) inside a BEGIN rule can give FILENAME a value.

http://www.gnu.org/software/gawk/manual/html_node/Auto_002dset.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文