Skip to content

Instantly share code, notes, and snippets.

@fstamour
Created February 22, 2013 18:57
Show Gist options
  • Save fstamour/5015711 to your computer and use it in GitHub Desktop.
Save fstamour/5015711 to your computer and use it in GitHub Desktop.
Derping with fifo on linux.
#on terminal 1
mkfifo fifo
while true; do read line < fifo; $line; done
#on terminal 2
cat > fifo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment