Ich blieb bei einem merkwürdigen readarray
Kommandoverhalten.
Die man bash
Staaten:
readarray
Read lines from the standard input into the indexed array variable array
Aber diese Skripte funktionieren nicht (Array ist leer):
unset arr; (echo a; echo b; echo c) | readarray arr; echo ${#arr[@]}
unset arr; cat /etc/passwd | readarray arr; echo ${#arr[@]}
Und diese Arbeit:
unset arr; readarray arr < /etc/passwd ; echo ${#arr[@]}
unset arr; mkfifo /tmp/fifo; (echo a; echo b; echo c) > /tmp/fifo & mapfile arr < /tmp/fifo ; echo ${#arr[@]}
Was ist los mit Pipe?
< <
2 Pfeile zu haben ?