将 awk 脚本的输出重定向到文件
我创建了一个 awk 脚本。我想将其输出保存在文件中。但
awk -f a.awk >meta.txt
不工作。有人能告诉我为什么会发生这种情况吗? 任何人都可以建议哪个命令最适合创建特定格式的文件。如果我使用 awk 来实现这个目的可以吗?
I have created an awk script. I want to save its output in a file. But
awk -f a.awk >meta.txt
is not working. can someone tell me why is this happening?
Can anyone suggest which command is best for creating a file with a particular format. Is it OK if I use awk for this purpose.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果 AWK 脚本不处理文件或从管道接收输入,则整个脚本应位于
BEGIN
块中。If the AWK script is not processing a file or receiving input from a pipe, then the whole script should be in the
BEGIN
block.你给 awk 任何输入吗?如果它坐在那里什么都不做,然后你按^D,它就结束了,你没有在 STDIN 上给它任何东西。你的 a.awk 脚本是什么样的?
尝试:
Are you giving awk any input? If it sits there doing nothing and you press ^D and it ends you didn't give it anything on STDIN. What does your a.awk script look like?
Try:
awk 需要输入。通过命令管道一些数据,例如:
或者:
awk needs input. Pipe some data through the command, e.g:
Or:
当您使用
-f
调用 awk 脚本时,请确保包含要处理的文件名。忽略它是常见的错误,或者如果您的 awk 脚本设计为接受 stdin,请确保您正确地将 stdin 通过管道传输到它。例如
when you call an awk script using
-f
, make sure you include the file name to process. Its common mistake to leave it outor if your awk script is designed to take in stdin, make sure you are correctly piping stdin to it. eg