2011-01-24 5 views

답변

0

아마도 exec or execv과 같은 전화를 사용하고 싶을 것입니다. 그들은 "unistd.h"를 포함하면 사용할 수 있습니다. 작동 방법에 대한 자세한 내용은 man exec 또는 look here :

시스템을 사용하는 exec의 설명서 페이지를 참조하십시오. 마찬가지로 -

#include <stdlib.h> 
int main() { 
system("ls -l"); 
printf("This is a directory list..."); 
} 

you can use iftop command to find network stats in linux.

관련 문제