fork(1) download
  1. #!/bin/bash
  2. s="constA 3.1415; //some comments"
  3. value="$(sed -En 's/constA[[:blank:]]+([0-9][0-9.]*).*/\1/p' <<< "$s")"
  4. echo $value
  5.  
Success #stdin #stdout 0s 4396KB
stdin
Standard input is empty
stdout
3.1415