I have text.txt file which has;
Column A | Column B
123 | one two three
456 | four five six
789 | seven eight nine
The script pulls each line at random, and then splits the two columns to be used separately.
the first column has the variable $A and second variable $B
How can I do this?
I...