[bash] Read file line by line and split on whitespace ...
I want to read in lines in the file and extract data from each line and store them
into variables. ... cat test | while read one two; do echo $one -- $two; done ... var1
=$(echo $LINE | cut -f1)
www.linuxquestions.org |