assuming i have an output/file
1,a,info
2,b,inf
3,c,in
I want to run a while loop with read
while read r ; do
echo "$r";
# extract line to $arr as array separated by ','
# call some program (e.g. md5sum, echo ...) on one item of arr
done <<HEREDOC
1,a,info
2,b,inf
3,c,in
HEREDOC
I would like to use readarray
and while
, but compelling alternatives are welcome too.
There is a specific way to have readarray
(mapfile
) behave correctly with process substitution, but i keep forgetting it. this is intended as a Q&A so an explanation would be nice
Since
compelling alternatives are welcome too
and assuming you're just trying to populatearr
one line at a time:or if you also need each whole input line in a separate variable
r
:but bear in mind why-is-using-a-shell-loop-to-process-text-considered-bad-practice anyway.