参见英文答案 >
grep for contents AFTER pattern4个答案我有一个字符串,如下所示:
GenFiltEff=7.092200e-01
使用bash,我只想得到=字符后面的数字。有没有办法做到这一点?
cut -d "=" -f 2 <<< "$your_str"
要么
sed -e 's#.*=\(\)#\1#' <<< "$your_str"
GenFiltEff=7.092200e-01
使用bash,我只想得到=字符后面的数字。有没有办法做到这一点?
cut -d "=" -f 2 <<< "$your_str"
要么
sed -e 's#.*=\(\)#\1#' <<< "$your_str"