gpt4 book ai didi

c - 如何使用 system() 将脚本的返回值返回给 c 程序

转载 作者:太空宇宙 更新时间:2023-11-04 10:17:44 26 4
gpt4 key购买 nike

我有一个 bash 脚本(一个非常基本的脚本),它是从一个 c 程序中用 system() 调用的。

此脚本调用另一个名为 ./dslite.sh 的脚本,该脚本将固件刷入设备。

如何将./dslite.sh返回的值返回给c程序?

C 程序:

system("flash_firmware.sh");

脚本

#!/bin/bash

./dslite.sh --mode flash --config=~/configs/device1_config/c1dut2.ccxml ~/images/$1

最佳答案

来自 the Bash manual page , 关于 EXIT STATUS 的部分:

Bash itself returns the exit status of the last command executed, unless a syntax error occurs, in which case it exits with a non-zero value.

这意味着您的脚本的退出代码将是 ./dslite.sh 脚本的退出代码。

换句话说,你不应该做任何事情, system 的返回值函数应该是 ./dslite.sh 返回的内容。


另一方面,如果您指的是脚本打印输出,则使用popen相反。

关于c - 如何使用 system() 将脚本的返回值返回给 c 程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45349764/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com