Displaying ./code/shellv2/main.c
//our own header
#include "shell.h"
int main(int argc, char **argv){
//prints a welcome message
printf("Welcome to My Shell!\n");
//put config files here
run_shell();
//perform shutdown stuff here
printf("Bye\n");
return 0;
}
|