You are viewing a single comment's thread. Return to all comments →
another way to solve the problem using only read function
while IFS=' ' read -r -a line;do echo "${line[0]} ${line[1]} ${line[2]}" done
Seems like cookies are disabled on this browser, please enable them to open this website
Cut #8
You are viewing a single comment's thread. Return to all comments →
another way to solve the problem using only read function