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
You can do:
echo "first second third etc" | cut -d " " -f2- >> second third etc