I know the way to read line by line:
FILENAME=$1
cat $1 | while read LINE
do
echo "$LINE"
done
but what if I have something like "Type \t Value" in each line that I need to separate them in LINE.
An example will be something like
Integer 2
String "abc"
Integer 3
I know many posts talked about awk but I'm wondering if there is a simple way that I can do this within my while loop.