I have a file with many lines in each line there are many columns(fields) separated by blank \" \" the numbers of columns in each line are different I want to remove the fir
Its pretty straight forward to do it with only shell
while read A B C; do echo "$C" done < oldfile >newfile