Is there a way to PRINT: everything on 1 line?
Using:
PRINT:e:LAST:"Current\:%8.2lf" \
PRINT:e:AVERAGE:"Avg\:%8.2lf" \
PRINT:e:MAX:"Max\:%8.2lf \n" \
I get output that looks like:
Current: 32.56
Avg: 44.41
Max: 131.90 \n
Current: 28.15
Avg: 65.33
Max: 389.69 \n
Current: 11.98
Avg: 16.45
Max: 59.42 \n
....
I would like to get it to look like this:
Current: 32.56 Avg: 44.41 Max: 131.90 \n
Current: 28.15 Avg: 65.33 Max: 389.69 \n
In the end this will allow me to format the txt to import into excel.
Is this possible?