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.
我正在尝试找到一个函数来调用系统命令(shell 命令)并在 C 程序中取回其结果。我只找到了 system 之类的函数,但这些函数不返回命令的结果。
我只在 perl 中知道它: my $results = ``my shell command` ;
谢谢!
您正在寻找popen(),至少在 POSIX(Linux 等)系统上。在 Windows 中,可能需要不同的解决方案。
popen()