Is there a way to get the minimum and maximum values separately for each of the ranges reported by fp in case of fp input maps?<br><br>I could use e.g., awk to separate the columns, but the problem is with negative values, like in the example below:<br>
<br>-1--2 | 5<br>-2-0 | 10<br>0-1 | 3<br><br>The minus sign and the dash to separate the minimum and maximum value of the range are the same character so separating by separator is not that straightforwards (or maybe / hopefully I am missing something obvious). <br>
<br>Paulo<br>