Skip to content

Instantly share code, notes, and snippets.

View mustafaboleken's full-sized avatar
🎯
Focusing

Mustafa BOLEKEN mustafaboleken

🎯
Focusing
View GitHub Profile

Oh my zsh.

Oh My Zsh

Install ZSH.

sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh

Install Oh my ZSH.

@mustafaboleken
mustafaboleken / shell.c
Created October 28, 2017 14:11 — 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>