An open API service indexing awesome lists of open source software.

https://github.com/thk2b/ipc_exercises

Simple programs to demonstrate inter process communication
https://github.com/thk2b/ipc_exercises

Last synced: about 1 year ago
JSON representation

Simple programs to demonstrate inter process communication

Awesome Lists containing this project

README

          

# ipc_exercises
Simple programs to demonstrate inter process communication

## compilation
run `make`

## exec_cmd

usage: `./exec_cmd [ [...]]`

Executes the executable with arguments.

## exec_redirection

usage: `./exec-redirection [ [...]] `

Executes the executable with arguments and redirects the child's output to the file.

## exec_pipe

usage: `./exec_pipe [ [...]] "|" [ [...]]`

Executes both executables with arguments, redirecting the first's `stdout` to the second's `stdin`.
The commands must be separated by `|`.