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.
如何在 ac 或 c++ 程序中运行/执行 ruby 脚本?而不是在终端中输入irb然后ruby rubyfile.rb运行它。
irb
ruby rubyfile.rb
通常,当我想使用命令“flash”运行/执行生成文件时,我会这样做:
#include <stdlib.h> system("make flash");
顺便说一句,我正在使用mac
您可以使用 exec 功能组的功能。
#include <unistd.h> exec..() #exec function group
你可以输入
man 3 exec
在终端中,为您提供帮助。