Skip to content
Snippets Groups Projects
Commit ca765ed3 authored by Nikolay Tsanov's avatar Nikolay Tsanov
Browse files

Add comments

parent 0159f646
No related branches found
No related tags found
No related merge requests found
/*
* Authors: Krasimir Balchev, Stefan Costica, Nikolay Tsanov, Mihail Hristov, Enrique Martín Ocaña
* Group Number: 18
* Purpose: A simple shell implemented in C, it supports the built-in UNIX commands, history invocations, aliases (recursive aliases are possible).
* Language: C
*/
#include <stdio.h>
#include <string.h>
#include "shell.h"
// Start the shell
int main( void ) {
// Load files
// load_history();
//Run shell
run_shell();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment