Skip to content

Instantly share code, notes, and snippets.

@ccnokes
Created June 2, 2018 04:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ccnokes/7826a8fdd7b26890a3aff2c2945ef8cd to your computer and use it in GitHub Desktop.
Save ccnokes/7826a8fdd7b26890a3aff2c2945ef8cd to your computer and use it in GitHub Desktop.
Bash fifos
mkfifo fifo
# produce data and send into fifo
# have to background it because it blocks until the fifo drains/completes
ls -l > fifo &
cat fifo # this drains it and completes the job
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment