Garip bir readarray
komuta davranışı ile sıkıştım .
man bash
devletler:
readarray
Read lines from the standard input into the indexed array variable array
ancak bu komut dosyaları çalışmıyor (dizi boş):
unset arr; (echo a; echo b; echo c) | readarray arr; echo ${#arr[@]}
unset arr; cat /etc/passwd | readarray arr; echo ${#arr[@]}
Ve bunlar işe yarıyor:
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[@]}
Boru ile ilgili sorun ne?
< <
2 ok olması ne anlama geliyor ?