how to get characters after string in bash code example
Example: get string after character shell script
your_str='GenFiltEff=7.092200e-01'
echo $your_str | cut -d "=" -f2
your_str='GenFiltEff=7.092200e-01'
echo $your_str | cut -d "=" -f2