SyntaxFix
Write A Post
Hire A Developer
Questions
For the text after the first = and before the next =
=
cut -d "=" -f2 <<< "$your_str"
or
sed -e 's#.*=\(\)#\1#' <<< "$your_str"
For all text after the first = regardless of if there are multiple =
cut -d "=" -f2- <<< "$your_str"