bash get all string after symbol code example
Example 1: bash get value after equal sign
echo "GenFiltEff=7.092200e-01" | cut -d "=" -f2
Example 2: get string after character shell script
your_str='GenFiltEff=7.092200e-01'
echo $your_str | cut -d "=" -f2