GenFiltEff=7.092200e-01
使用bash,我只想得到=字符后面的数字。有没有办法做到这一点?@H_301_4@
cut -d "=" -f 2 <<< "$your_str"
要么@H_301_4@
sed -e 's#.*=\(\)#\1#' <<< "$your_str"