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
- Host: GitHub
- URL: https://github.com/thk2b/ipc_exercises
- Owner: thk2b
- Created: 2018-11-15T07:09:56.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-15T07:27:51.000Z (over 7 years ago)
- Last Synced: 2024-10-04T16:41:20.273Z (over 1 year ago)
- Language: C
- Size: 15.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 `|`.