This code will give the first part, but how to remove it, and get the whole string without the first part?
echo \"first second third etc\"|cut -d \" \" -f1
Try this:-
echo "first second third etc"|cut -d " " -f2-