Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

17 lines
186B

  1. #!/usr/bin/fish
  2. set pipe $argv[1]
  3. if test (count $argv) -ge 2
  4. echo $argv[2]
  5. end
  6. if [ ! -p $pipe ]
  7. echo named pipe $pipe not found
  8. exit 1
  9. end
  10. while [ -p $pipe ]
  11. cat $pipe
  12. end