任何人都知道如何在 Windows 上制作独立的 Awk/Gawk 程序
我正在使用 awk 脚本进行一些相当繁重的解析,这些解析可能在将来重复时很有用,但我不确定我的 unix 不友好的同事是否愿意安装 awk/gawk 来进行解析。 有没有办法从我的脚本创建独立的可执行文件?
I'm using an awk script to do some reasonably heavy parsing that could be useful to repeat in the future but I'm not sure if my unix-unfriendly co-workers will be willing to install awk/gawk in order to do the parsing. Is there a way to create a self-contained executable from my script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我不知道如何使用 AWK 制作独立的二进制文件。 但是,如果您喜欢 AWK,那么您很可能也会喜欢 Python,并且有多种方法可以创建独立的 Python 程序。 例如,Py2Exe。
下面是 Python 的一个简单示例:
与 AWK 不同,但易于学习,而且实际上比 AWK 更强大(该语言具有更多功能,并且有许多“模块”可供导入和使用)。 Python 没有像
AWK 中的功能那样的隐式功能,但您可以简单地使用 if/elif/elif/else 链来匹配模式。
I'm not aware of a way to make a self-contained binary using AWK. However, if you like AWK, chances seem good that you might like Python, and there are several ways to make a self-contained Python program. For example, Py2Exe.
Here's a quick example of Python:
Not the same as AWK, but easy to learn, and actually more powerful than AWK (the language has more features and there are many "modules" to import and use). Python doesn't have anything implicit like the
feature in AWK, but you can simply have an if/elif/elif/else chain with patterns to match.
据我所知,Cygwin 工具包中有一个独立的 awk.exe。
您可以将其与您分发给同事的任何文件捆绑在一起。
Theres a standalone awk.exe in the Cygwin Toolkit as far as I know.
You could just bundle that in with whatever files you're distributing to your colleagues.
它必须是独立的吗? 您可以编写一个小型可执行文件,它将使用正确的参数调用 awk,并将结果通过管道传输到用户选择的文件或 stdout - 无论哪个适合您的同事。
Does it have to be self contained? You could write a small executable that will invoke awk with the right arguments and pipe the results to a file the users chooses, or to stdout - whichever is appropriate for your co-workers.
GnuWin32 中的 MAWK — http://gnuwin32.sourceforge.net/packages/mawk.htm
也是有趣的替代方案,Java实现 - http://sourceforge.net/projects/jawk/
MAWK in GnuWin32 — http://gnuwin32.sourceforge.net/packages/mawk.htm
also interesting alternative, Java implementation — http://sourceforge.net/projects/jawk/