shell – 使用awk调用可执行程序

前端之家收集整理的这篇文章主要介绍了shell – 使用awk调用可执行程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个C程序,我想通过使用awk在shell脚本中调用。我该怎么做这样的事情?
从AWK手册页:
system(cmd)
              executes cmd and returns its exit status

GNU AWK manual还有a section,部分描述了系统功能,并提供了一个例子:

system("date | mail -s 'awk run done' root")
原文链接:https://www.f2er.com/bash/387527.html

猜你在找的Bash相关文章