码迷,mamicode.com
首页 > 系统相关 > 详细

Linux System命令

时间:2018-05-07 11:03:00      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:div   erro   article   .sh   run   log   tst   tail   bubuko   

http://blog.csdn.net/cheyo/article/details/6595955

技术分享图片
 1 #include <stdio.h>  
 2 #include <stdlib.h>  
 3 #include <sys/wait.h>  
 4 #include <sys/types.h>  
 5   
 6 int main()  
 7 {  
 8     pid_t status;  
 9   
10     status = system("./test.sh");  
11     if (-1 == status)  
12     {  
13         printf("system error!");  
14     }  
15     else  
16     {  
17         printf("exit status value = [0x%x]\n", status);  
18         if (WIFEXITED(status))  
19         {  
20             if (0 == WEXITSTATUS(status))  
21             {  
22                 printf("run shell script successfully.\n");  
23             }  
24             else  
25             {  
26                 printf("run shell script fail, script exit code: %d\n", WEXITSTATUS(status));  
27             }  
28         }  
29         else  
30         {  
31             printf("exit status = [%d]\n", WEXITSTATUS(status));  
32         }  
33     }  
34   
35     return 0;  
36 }  
37 
38 status

 

Linux System命令

标签:div   erro   article   .sh   run   log   tst   tail   bubuko   

原文地址:https://www.cnblogs.com/linux-wang/p/9001330.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!