Simple programs to demonstrate inter process communication
run make
usage: ./exec_cmd <executable> [ <arg> [...]]
Executes the executable with arguments.
usage: ./exec-redirection <exec> [<arg> [...]] <filename>
Executes the executable with arguments and redirects the child's output to the file.
usage: ./exec_pipe <exec> [<arg> [...]] "|" <exec> [<arg> [...]]
Executes both executables with arguments, redirecting the first's stdout to the second's stdin.
The commands must be separated by |.