#!/usr/bin/awk -fBEGIN {print "work already!"}
如果我运行它:
awk -f panic
在(osx)终端上它可以工作.但是如果我尝试将其作为脚本运行它会失败:
. panic-bash: BEGIN: command not found
我检查了awk使用哪个awk的位置,它确实位于/usr/bin/awk.任何想法为什么它不起作用?
解决方法 要将文件作为脚本运行,您必须键入:./<script>
编辑:
正如William Pursell指出的那样.不是源的别名,但恰恰相反.
总结. is not an alias for source. . is the sh standard command for running another script insIDe the current shell. source is a command that originated in csh and was adopted by many sh clones as an alias for .. If source is to be vIEwed as anything but an abomination,it is an alias for .,not the other way around.
以上是内存溢出为你收集整理的linux – awk shebang不起作用全部内容,希望文章能够帮你解决linux – awk shebang不起作用所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)