How to iterate file which is commahas comma separated by value ?
I tried the following:
$ cat file |tr'| tr ',''\n'>' '\n' > /tmp/f1
$ while read -r line;do
echo $line;
done<done < /tmp/f1
How can i iterate over the first line contents without the creation of temporary file?
Any ideas?