Skip to content

Instantly share code, notes, and snippets.

View dalexhd's full-sized avatar
🚀
</ 42 Madrid Student />

DalexHD dalexhd

🚀
</ 42 Madrid Student />
View GitHub Profile
@dalexhd
dalexhd / Shell.c
Created May 13, 2021 07:57 — forked from tam5/Shell.c
Basic Unix Shell with forks, pipes, and redirection
#include <sys/types.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <ctype.h>
#include <stdlib.h>