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.

pipe-watcher 152B

3 år sedan
123456789101112131415
  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. exit 1
  8. end
  9. while [ -p $pipe ]
  10. cat $pipe
  11. end