> The reason this is problematic is when doing something like pasting the minimal output into a spreadsheet and then charting the output data I now don't have numerical values for the latency percentiles, I have these text strings instead. Instead of: > > 99.000000%=28704;99.500000%=28966;99.900000%=29229;99.950000%=29491;99.990000%=32112 > > It seems it would be much more useful if it just printed like this: > > 28704,28966,29229,29491,32112 If you must use terse output there is a messy solution: sed -i 's/;/,/g;s/=/,/g' output.csv -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html