- shell now supports multiple args in command line

- executes binaries in /bin/ now
This commit is contained in:
Nicolas Berr 2011-09-22 15:39:20 +02:00
parent 06a2b17978
commit 265008c76d

View file

@ -21,6 +21,7 @@
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/wait.h>
#undef errno
@ -38,31 +39,72 @@ void help() {
printf("exit > exit shell \n");
}
#define MAXARGS 16
#define ST_WHITE 0
#define ST_ARG 1
char** splitargs(char* args) {
static char* ret[MAXARGS+1];
int i = 0;
int state = ST_WHITE;
while (*args != '\0') {
if (state == ST_WHITE) {
if (!isspace(*args)) {
ret[i++] = args;
if (i == MAXARGS)
break;
state = ST_ARG;
}
}
else {
if (isspace(*args)) {
*args = '\0';
state = ST_WHITE;
}
}
args++;
}
ret[i] = NULL;
return ret;
}
int main(int argc, char** argv)
{
char* command = malloc(1024*sizeof(char));
char commandline[1024];
char* command;
int size = 0, status = 0;
pid_t pid;
system("clear");
showlogo();
while(1) {
printf("$ ");
do {
size = scanf("%s", command);
} while(size <= 0);
char** newargv;
char* newenv[] = {"USER=root", "PATH=/bin:/sbin:/usr/bin", "PWD=/", "TEMP=/tmp", NULL};
printf("mshell> ");
gets(commandline);
newargv = splitargs(commandline);
command = newargv[0];
if(command == NULL) {
continue;
}
if(!strcmp(command, "exit")) {
return 0;
}
if(!strcmp(command, "help")) {
help();
} else {
char path[128];
sprintf(path, "/bin/%s", command);
pid = fork();
if (pid == 0) { //child
char* newargv[] = {command, NULL};
char* newenv[] = {"USER=root", "PATH=/bin:/sbin:/usr/bin", "PWD=/", "TEMP=/tmp", NULL};
execve(command, newargv, newenv);
status = execve(path, newargv, newenv);
if (status)
printf("mshell: %s: command not found\n", path);
return errno;
} else {
wait(&status);