Skip to content

Instantly share code, notes, and snippets.

@Cyrilua
Cyrilua / shell.c
Created September 21, 2020 08:06 — 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>