1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.nl/common/mkfifo.md
Lena d74e776a9c
pages.*/*: replace {{" "}} with "{{ }}" (#15034)
The latter notation is preferred by the style guide.
2024-12-05 22:57:27 +05:30

471 B

mkfifo

Maak FIFOs (benoemde pipes). Meer informatie: https://www.gnu.org/software/coreutils/mkfifo.

  • Maak een benoemde pipe op een opgegeven pad:

mkfifo {{pad/naar/pipe}}

  • Stuur data naar een benoemde pipe en stuur het commando naar de achtergrond:

echo "{{Hello World}}" > {{pad/naar/pipe}} &

  • Ontvang data van benoemde pipe:

cat {{pad/naar/pipe}}

  • Deel je terminal sessie in real-time:

mkfifo {{pad/naar/pipe}}; script -f {{pad/naar/pipe}}