2
0

gnunet-logread-ipc 276 B

12345678910
  1. #!/bin/sh
  2. #
  3. # Usage: gnunet-logread-ipc | gnunet-logread
  4. #
  5. # ... obsoleted by gnunet-logread's new -f option that does the same thing
  6. # FIXME: Replace /tmp with our use of $TMPDIR and similar.
  7. ipc=${1:-/tmp/gnunet-logread-ipc.sock}
  8. test -e "$ipc" || mkfifo "$ipc"
  9. cat "$ipc"