Hello, I have a .bat file with the following structure:
istruction1[newline]
I would like to append some parameters in a way that the resulting file is:
istruction1 param
currently i have:
istruction1[newline]
param
Basically I want to get rid of the newline...how can I do that?
thanks a lot!