system原型: 参数是命令, 命令行里敲的shell命令。 通过fork创建子进程后,在子进程中调用execl 来执行唤起 shell 进程 从而执行shell命令。
systerm两层含义:
1、正确退出后。还需要再判断,操作成功或者操作失败。
2、错误退出。
SYSTEM(3) Linux Programmer's Manual SYSTEM(3)
NAME
system - execute a shell commandSYNOPSIS
#include <stdlib.h>int system(const char *command);
DESCRIPTION
The system() library function uses fork(2) to create a child process that executes the shell command specified in command using execl(3) as follows:execl("/bin/sh", "sh", "-c", command, (char *) 0);
system() returns after the command has been completed.
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <sys/types.h>
int main()
{
pid_t status;
status = system("./test.sh");
if (status == -1) {
printf("System error.\n");
exit(1);
} else {
if (WIFEXITED(status)) {
if (WEXITSTATUS(status) == 0) {
printf("run shell successfully.\n");
} else {
printf("run shell failed, script return value is %d.\n", WEXITSTATUS(status));
}
} else {
printf("exit status = [%d]\n", WEXITSTATUS(status));
}
}
}
下面更详细解释:
1、先统一两个说法:
(1)system 返回值:指调用system函数后的返回值,比如上例中status为system返回值
(2)shell 返回值:指system所调用的shell命令的返回值,比如上例中,test.sh中返回的值为shell返回值。
一次system调用分三个阶段:
- fork创建子进程
- 唤醒shell进程
- 执行shell命令
所以说返回值的判断也应该考虑这三个阶段。
下面更详细解释:
1、先统一两个说法:
(1)system 返回值:指调用system函数后的返回值,比如上例中status为system返回值
(2)shell 返回值:指system所调用的shell命令的返回值,比如上例中,test.sh中返回的值为shell返回值。
2、如何正确判断test.sh是否正确执行?
都错!(仅仅判断status是否==0?或者仅判断status是否!=-1? )
3、man中对于system的说明
RETURN VALUE
The value returned is -1 on error (e.g. fork() failed), and the return
status of the command otherwise. This latter return status is in the
format specified in wait(2). Thus, the exit code of the command will
be WEXITSTATUS(status). In case /bin/sh could not be executed, the
exit status will be that of a command that does exit(127).
看得很晕吧?
4、system函数对返回值的处理。
阶段1:
创建子进程等准备工作。如果失败,返回-1。
阶段2:
调用/bin/sh拉起shell脚本,如果拉起失败或者shell未正常执行结束(参见备注1),原因值被写入到status的低8~15比特位中。
如何判断阶段2中,shell脚本是否正常执行结束呢?系统提供了宏:WIFEXITED(status)。如果WIFEXITED(status)为真,则说明正常结束。
阶段3:
如果shell脚本正常执行结束,将shell返回值填到status的低8~15比特位中。
如何取得阶段3中的shell返回值?你可以直接通过右移8bit来实现,但安全的做法是使用系统提供的宏:WEXITSTATUS(status)。
备注1:
只要能够调用到/bin/sh,并且执行shell过程中没有被其他信号异常中断,都算正常结束。
比如:
不管shell脚本中返回什么原因值,是0还是非0,都算正常执行结束。即使shell脚本不存在或没有执行权限,也都算正常执行结束。
如果shell脚本执行过程中被强制kill掉等情况则算异常结束。
版权声明:本文为优快云博主「_charles_」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.youkuaiyun.com/cy_cai/article/details/12153557