JeremyBosquet / pipex

42 Project - Make UNIX pipe in C

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pipex

42 Project - Make UNIX pipe in C

This project is an introduction to a well known mechanism of the UNIX system called pipes

Compiling

Run make

Running

./pipex <infile> <cmd 1> <cmd 2> <outfile>

Exemple

➜  pipex ✗ ./pipex infile "ls -l" "wc -l" outfile
➜  pipex ✗ cat outfile
       9

About

42 Project - Make UNIX pipe in C


Languages

Language:C 90.6%Language:Makefile 9.4%