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.
|
12345678910111213141516 |
- #!/usr/bin/fish
-
- set pipe $argv[1]
-
- if test (count $argv) -ge 2
- echo $argv[2]
- end
-
- if [ ! -p $pipe ]
- echo named pipe $pipe not found
- exit 1
- end
-
- while [ -p $pipe ]
- cat $pipe
- end
|