//實現(xiàn)從命令行輸入命令,然后執(zhí)行//
#include<string.h>
#include<sys/wait.h>
#include<unistd.h>
#define MAX_LINE 1024
int main()
{
char buf[ MAX_LINE ] ;
pid_t pid ;
int status ;
printf( "%%" ) ;// printf prompt % need %%
while( fgets( buf , MAX_LINE , stdin ) != NULL )
{
buf[ strlen( buf ) - 1 ] = 0 ;
if( ( pid = fork() ) < 0 )
{
printf( " fork error.\n" ) ;
}
else if( pid == 0 )
{
// 子進程
// 執(zhí)行程序
execlp( buf , buf , ( char * ) 0) ; // 執(zhí)行程序
printf( "%s" , buf ) ;
return 1 ;
}
// parent 進程,等待子進程進程結束
if( ( pid = waitpid( pid , &status , 0 ) ) < 0 )
{
printf( "waitpid error.\n" ) ;
}
printf( "%%" ) ;
}
return 0 ; |
|