This is supposed to generate the hierarchy to a web document with the different files, it's because I'm lazy I made this.
@echo off
echo.
echo This program will generate the base folder for a new website .. .
pause
md folders
echo > folders/default.html "<html> /* More content */ </html>"
echo > folders/style.css " /* All the standards i always use */ "
echo > folders/javascript.js " /* All the standards i always use */ "
echo.
exit
It also work but the problem is, I cannot remove/escape the quotes and that give hysterical moments though.
I tried many different things. Changing echo with type, I tried the different escape options I could find on www etc., but the quotes still there.