I have a text file with data as:
(832555,488012,0,17:31:32.541,2014-08-06 17:31:32.000,0,0,NULL,FBCD,"-6484620512517810993"etcetcetc
I want to extract the string post FBCD so my output should be:
FBCD,"-6484620512517810993"etcetc
I am able to find the position of FBCD using awk:
awk '{print substr("FBCD",1,200)}' file.txt
but I cannot extract the remaining values.