Linux System命令

Posted Linux-wang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux System命令相关的知识,希望对你有一定的参考价值。

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命令的主要内容,如果未能解决你的问题,请参考以下文章

将 SED 命令转换为 linux 命令

markdown [Docker] Docker片段列表和命令#linux #docker #snippets

Android 逆向Linux 文件权限 ( Linux 权限简介 | 系统权限 | 用户权限 | 匿名用户权限 | 读 | 写 | 执行 | 更改组 | 更改用户 | 粘滞 )(代码片段

Python执行Linux系统命令的4种方法

VSCode自定义代码片段——git命令操作一个完整流程

VSCode自定义代码片段——cli的终端命令大全