cutcheatsheet of cutUse cut to get strings between double quotesecho "this is a \"what we really want\" string"this is a "what we really want" stringecho"this is a \"what we really want\" string"| cut -d '"' -f 2Outputwhat we really want