我希望某些函数可用于我运行的每个awk
命令,因此我想将行--file MyLibrary.awk
置于某种全局配置中,该配置将在每次运行时加载awk
。
但是,在咨询man
页面之后,我能找到的最接近的是AWKPATH
,它不会消除在每个命令上传递标记的需要。
The AWKPATH environment variable can be used to provide a list of directories that gawk searches when looking for
files named via the -f and --file options.
另一种方法是在alias
中使用.bashrc
命令,使awk
的每次调用都被awk -f MyLibrary.awk
替换,但这看起来有点像hacky。
是否有内置方法可以在每次运行时为awk
加载配置?
答案 0 :(得分:0)
我只是查看了GNU awk
的源代码,并且没有对全局配置文件的引用,所以答案当前是否。
答案 1 :(得分:0)