我想我需要一些grep和regex的组合,但我从来没有真正理解regex ..
var="Memory Used: 19.54M"var=${var#*: } # Remove everything up to a colon and spacevar=${var%M} # Remove the M at the end
注意,bash只能比较整数,它没有浮点算法支持。