Saya terjebak dengan perilaku readarray
perintah yang aneh .
Amerika man bash
Serikat:
readarray
Read lines from the standard input into the indexed array variable array
tetapi skrip ini tidak berfungsi (array kosong):
unset arr; (echo a; echo b; echo c) | readarray arr; echo ${#arr[@]}
unset arr; cat /etc/passwd | readarray arr; echo ${#arr[@]}
Dan ini bekerja:
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[@]}
Ada apa dengan pipa?
< <
2 panah?