We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Read in an Array
Read in an Array
Sort by
recency
|
152 Discussions
|
Please Login in order to post a comment
readarray list
echo ${list[@]}
or just xargs
hacker
mapfile -t array echo "${array[*]}"
Simply use mapfile: