Semester's final Project assignment for "Operating Systems" course at AUTH University
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
265 B

7 years ago
#include <stdio.h>
#include <stdlib.h>
#include "apostolofShellFunctions.h"
int main(int argc, char *argv[]){
if (argc == 1){
interactiveMode();
} else if (argc == 2) {
batchFileMode(argv[1]);
} else {
printf("Not supported\n");
}
exit(EXIT_SUCCESS);
}