Skip to content

Instantly share code, notes, and snippets.

View zhao3940's full-sized avatar

Wei Zhao zhao3940

View GitHub Profile
@zhao3940
zhao3940 / shell.c
Created October 26, 2017 01: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>