Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
具体来说,一个 perl 脚本。需要传递参数,但不需要返回任何内容。
我搜索了网络和参考手册,没有结果。
答案取决于您使用的操作系统。您可以使用该功能执行命令
void system(string command)
在 Windows 上。在 Unix 上,使用
void system(string command, void childCB(int) [,void parentCB()])
有关详细信息,请查看 DXL 参考手册第 10 章操作系统界面。这是示例用法:
if (platform=="WIN32") system "notepad"