Skip to content

Instantly share code, notes, and snippets.

@dedeibel
Created November 24, 2015 09:49
Show Gist options
  • Save dedeibel/4a7a698660c8a70784eb to your computer and use it in GitHub Desktop.
Save dedeibel/4a7a698660c8a70784eb to your computer and use it in GitHub Desktop.
#!/bin/bash
fifo_name=$1;
if [ -z "$1" ]; then
echo "Usage "`basename $0`": <PATH>"
exit 1
fi
[ -p "$fifo_name" ] || mkfifo "$fifo_name";
chmod a+rw "$fifo_name"
exec 3<> $fifo_name;
echo "go" > $fifo_name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment