我不知道为什么我无法从文件打印。我的命令是:
awk 'BEGIN{print "af">file}'
错误:
fatal: expression for `>>' redirection has null string value
答案1
file
需要用引号引起来,否则 awk 将尝试将其解析file
为变量而不是字符串:
awk 'BEGIN{print "af">"file"}'
我不知道为什么我无法从文件打印。我的命令是:
awk 'BEGIN{print "af">file}'
错误:
fatal: expression for `>>' redirection has null string value
file
需要用引号引起来,否则 awk 将尝试将其解析file
为变量而不是字符串:
awk 'BEGIN{print "af">"file"}'