Skip to content

Instantly share code, notes, and snippets.

@sevenissimo
Created June 6, 2024 15:39
Show Gist options
  • Select an option

  • Save sevenissimo/c628d2c31763833ea9d35c8946346cdd to your computer and use it in GitHub Desktop.

Select an option

Save sevenissimo/c628d2c31763833ea9d35c8946346cdd to your computer and use it in GitHub Desktop.
Setup temporary FIFO, ensure cleanup
# Setup FIFO
mkfifo ${f:=$(mktemp -u)}
trap "rm -f $f" EXIT
exec {fd}<>$f # Needed to enable FIFO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment