Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Append value separated by new line to file?

According to tip i get here: How to write a variable into a file? i use Append To File command to add new number to file. Unfortunately append adds in the same line, so it looks like:

'0421085414373000''0421085453944000'...

Maybe someone of you knows how to append new number separated by new line to file?

like image 399
mia Avatar asked Apr 21 '15 09:04

mia


1 Answers

Add ${\n} at the end of the string to get a newline character.

See Operating-system variables in Robot User Guide.

like image 162
Laurent Bristiel Avatar answered Sep 23 '22 14:09

Laurent Bristiel