Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 645 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 645 Bytes

pipex

The purpose of this project is the discovery in detail of the UNIX mechanism - pipe.

Subject

Discription of mandatory part

The program pipex should repeat the behaviour of the shell command:

$> < file1 cmd1 | cmd2 > file2

Running like this:

$> ./pipex file1 cmd1 cmd2 file2

All errors like: wrong commands, permission to files and etc, need be handle.

Installation & Usage

Clone this repository to your computer:

git clone https://github.com/MatPizzolo/Pipex.git

First compile and install library

make

Run

$> ./pipex file1 cmd1 cmd2 file2