- 表头文件
- #i nclude<stdlib.h>
- 定义函数
- int system(const char * string);
- 函数说明
- system()会调用fork()产生子进程,由子进程来调用/bin/sh-c string来执行参数string字符串所代表的命令,此命>令执行完后随即返回原调用的进程。在调用system()期间SIGCHLD 信号会被暂时搁置,SIGINT和SIGQUIT 信号则会被忽略。
- 返回值
- =-1:出现错误
- =0:调用成功但是没有出现子进程
- >0:成功退出的子进程的id
- 如果system()在调用/bin/sh时失败则返回127,其他失败原因返回-1。若参数string为空指针(NULL),则返回非零值>。如果system()调用成功则最后会返回执行shell命令后的返回值,但是此返回值也有可能为 system()调用/bin/sh失败所返回的127,因此最好能再检查errno 来确认执行成功。
- 附加说明
- 在编写具有SUID/SGID权限的程序时请勿使用system(),system()会继承环境变量,通过环境变量可能会造成系统安全的问题。
- system函数已经被收录在标准c库中,可以直接调用
- //mainnew.cpp
- #include <stdlib.h>
- int main(){
- system("mkdir $HOME/.SmartPlatform/");
- system("mkdir $HOME/.SmartPlatform/Files/");
- system("cp mainnew.cpp $HOME/.SmartPlatform/Files/");
- return 0;
- }
- system函数的源码
- #include <sys/types.h>
- #include <sys/wait.h>
- #include <errno.h>
- #include <unistd.h>
- int system(const char * cmdstring){
- pid_t pid;
- int status;
- if(cmdstring == NULL){
- return (1);
- }
- if((pid = fork())<0){
- status = -1;
- }
- else if(pid = 0){
- execl("/bin/sh", "sh", "-c", cmdstring, (char *)0);
- -exit(127); //子进程正常执行则不会执行此语句
- }
- else{
- while(waitpid(pid, &status, 0) < 0){
- if(errno != EINTER){
- status = -1;
- break;
- }
- }
- }
- return status;
- }
- 有时候在linux下编写c语言代码,我们会遇到需要执行系统命令的时候,却要调用C文件内的变量。可以参照以下实例(把当前目录下的test.c文件更名为变量b的值)
- #include <stdio.h>
- main()
- {
- int b = 1234, i;
- char c[4];
- memset(c, '0', 4);
- sprintf(c, "%d", b);
- char a[14] = "mv test.c ";
- for(i = 0; i < 4; i ++) a[10+i] = c[i];
- system(a);
- return 0;
- }