Skip to content

Instantly share code, notes, and snippets.

/**
* This is a simple implementation of the Unix's tee command
* It's a solution for the exercise 4-1 in "The Linux Programming Interface" book
*
* auther: Zain Saqer (github.com/zain-saqer)
*/
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>