您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“system函數(shù)怎么用”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“system函數(shù)怎么用”這篇文章吧。
system函數(shù)是一個和操作系統(tǒng)緊密相關的函數(shù),用戶可以使用它在自己的程序中調用系統(tǒng)提供的各種命令。函數(shù)原型如下:
#include<stdlib.h> int system(const char *cmdstring);
system調用fork產(chǎn)生子進程,由子進程來調用/bin/sh-cmdstring來執(zhí)行參數(shù)cmdstring字符串所代表的命令,此命令執(zhí)行完成后隨即返回調用的進程。在調用system期間SIGCHLD信號會被暫時擱置,SIGINT和SIGQUIT信號則會被忽略。
如果參數(shù)cmdstring是一個空指針NULL,則僅當命令處理程序可用時,system返回非0值,這一特征可以決定在一個給定的操作系統(tǒng)上是否支持system函數(shù),當返回0時,表示system無效。
例如:
#include<stdlib.h> #include<stdio.h> void main() { int status; if((status=system(NULL))<0) { printf("system error.\n"); exit(0); } printf("exit status=%d\n",status); if((status=system("date"))<0) { printf("system error.\n"); exit(0); } printf("exit status=%d\n",status); if((status=system("invalidcommand"))<0) { printf("system error.\n"); exit(0); } printf("exit status=%d\n",status); if((status=system("who;exit 44"))<0) { printf("system error.\n"); exit(0); } printf("exit status=%d\n",status); }
運行結果:
exit status=1 Wed Mar 22 09:20:45 CST 2017 exit status=0 sh: invalidcommand: command not found exit status=32512 root pts/0 2017-03-22 09:07 (124.152.7.168) exit status=11264
在第一次調用system是參數(shù)為空指針,返回結果1,說明在該系統(tǒng)下system是可用的。
第二次調用system時,參數(shù)為date,執(zhí)行成功。
第三次調用system時,參數(shù)為一個非法字符串,system返回值為shell的終止狀態(tài)32512(命令出錯)。
第四次調用system時,使用who命令顯示登錄到系統(tǒng)的當前用戶情況,exit是退出當前的shell,可以看到system返回112674,成功執(zhí)行。
以上是“system函數(shù)怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業(yè)資訊頻道!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。