Skip to content

Instantly share code, notes, and snippets.

@oakaigh
Created November 11, 2018 08:44
Show Gist options
  • Save oakaigh/466428eee2ec9157fd7e0a445906f038 to your computer and use it in GitHub Desktop.
Save oakaigh/466428eee2ec9157fd7e0a445906f038 to your computer and use it in GitHub Desktop.
mkfifo /tmp/emListenPipe
while true; do
cat /tmp/emListenPipe | ( read foo;
if [ $foo == "a" ]; then echo bitch; fi;
) | nc -l 1234 > /tmp/emListenPipe
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment