如何重定向在 c++ 中读取 bash 脚本的输出?

发布于 2024-12-09 01:19:52 字数 178 浏览 0 评论 0原文

我知道该功能:

system("myfile.sh")

执行 bash 脚本。 好的,但现在我想将输出重定向到我的程序以确保读取。 例如,脚本 date.sh 给我系统的日期,我想在我的程序上使用 std::cout << 看到它。输出日期; 是否可以? 如何?

I know that the function:

system("myfile.sh")

exec a bash script.
Ok but now I want to redirect the output to my program to ensure the reading.
For example the script date.sh give me the date of my system, and i want to see it on my program with std::cout << OUTPUTDATE;
Is it possible?
How?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

℡Ms空城旧梦 2024-12-16 01:19:52

使用popen 而不是system

函数popen将为您提供一个可以读取的FILE *

FILE *script = popen("myfile.sh", "r");
while (fgets(line, LENGTH, script)) {
    /* ... */
}
pclose(script);

Use popen instead of system.

The function popen will give you a FILE * you can read from.

FILE *script = popen("myfile.sh", "r");
while (fgets(line, LENGTH, script)) {
    /* ... */
}
pclose(script);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文