Skip to content

Instantly share code, notes, and snippets.

View kurumim's full-sized avatar

Guilherme Araújo kurumim

View GitHub Profile
@kurumim
kurumim / shell.c
Created July 28, 2016 12:42 — forked from parse/shell.c
Simple shell in C
/* Compile with: g++ -Wall –Werror -o shell shell.c */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>