Skip to content

Instantly share code, notes, and snippets.

@esteigler
Forked from dj-jrkface/mypipe-<pid>
Last active December 15, 2015 08:19
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 esteigler/5230088 to your computer and use it in GitHub Desktop.
Save esteigler/5230088 to your computer and use it in GitHub Desktop.
if [ ! $1 ]; then
echo "need port number"
exit 1
fi
mkfifo mypipe-$$
nc -kl $1 0<mypipe-$$ | /home/jae/cs3157-pub/bin/mdb-lookup-cs3157 1>mypipe-$$
rm mypipe-$$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment