I have following file with these lines:
"A,B,C,D","E","F","G","H"
How I can easily remove first column in quotas?
Finally I want to see:
"E","F","G","H"
Try this way also
sed 's/^"[^"]\+",//' FileName.txt
Output: