output problem
Posted: 07 Mar 2014 12:40
hi all
this is my code
now the output of data.txt is something like this
name=34
lastname=34
grade=34
Class=34
phone=34
i want to be this
name=34 lastname=34 grade=34 Class=34 phone=34
can we do this in batch?
this is my code
Code: Select all
echo name=%name% >>data.txt
echo lastname=%lname% >>data.txt
echo grade=%grade% >>data.txt
echo Class=%Class% >>data.txt
echo phone=%phone% >>data.txt
now the output of data.txt is something like this
name=34
lastname=34
grade=34
Class=34
phone=34
i want to be this
name=34 lastname=34 grade=34 Class=34 phone=34
can we do this in batch?