mkfifo: add usage examples (#13488)

Co-authored-by: spageektti <git@spageektti.cc>
pull/28/head
Managor 2024-08-23 14:42:11 +03:00 committed by GitHub
parent 391ae0cd9e
commit c373845f80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 0 deletions

View File

@ -6,3 +6,11 @@
- Create a named pipe at a given path: - Create a named pipe at a given path:
`mkfifo {{path/to/pipe}}` `mkfifo {{path/to/pipe}}`
- Send data through a named pipe and send the command to the background:
`echo {{"Hello World"}} > {{path/to/pipe}} &`
- Receive data through a named pipe:
`cat {{path/to/pipe}}`