#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <time.h>
#include <string.h>
void getCommand(char* cmd, char** arg_list)
{
pid_t child_pid;
child_pid = fork();
if (child_pid == 0)
{
execvp (cmd, arg_list);
fprintf(stderr, "error");
abort();
}
}
int main(void)
{
printf("Type the command\n");
char *arg_list[] = {NULL, NULL, NULL, NULL, NULL, NULL, NULL};
char cmd[20];
char delim[2] = " ";
char *token;
scanf("%[^\n]", cmd);
token = strtok(cmd, delim);
while (token != NULL)
{
arg_list[0] = token;
token = strtok(NULL, cmd);
}
getCommand (arg_list[0], arg_list);
return 0;
}
我在这里想要实现的是我想读取用户输入,这应该是一个 linux 命令,然后执行该命令。看来我不能使用 strtok 来拆分我的字符串。我有点迷路了,谢谢你的帮助。