You are viewing a single comment's thread. Return to all comments →
Solution with awk:
while read line; do echo ${line} | awk '{print $1, $2, $3}' 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 →
Solution with awk: