1.

Solve : make html file with everything inside?

Answer»

Hi everyone. I would like to make a bat file that makes a file CALLED htmlpage.html and it has all the tags in the file.

So far i have

Code: [SELECT]ECHO.html>htmlpage.html
ECHO.
ECHO.title>>htmlpage.html
ECHO.
ECHO./title>>htmlpage.html
ECHO.
ECHO.body>>htmlpage.html
ECHO.
ECHO./body>>htmlpage.html
ECHO.
ECHO./html>>htmlpage.html

problem being i cant put the <> on any of them. If i do then it doesnt work. It's the only way i know how to WRITE something into a file. PLZ could someone show me how to do this?

Thanx in advance.Try escaping the special characters using a caret (u/case 6)

e.g. echo ^ >filename
echo.
echo ^ >>filename

etc...

GOOD luckah thank you very much. yay it works. thanx man.Thanks for coming back..



Discussion

No Comment Found