2016-05-06 20:02:50 -05:00
|
|
|
echo ^<html^>^<body^> > index.html
|
2016-05-13 20:39:02 -05:00
|
|
|
copy /y header.html index.html
|
2016-05-06 20:02:50 -05:00
|
|
|
dir *.js /s /b > tmpfile
|
|
|
|
for /F "tokens=*" %%A in (tmpfile) do (
|
|
|
|
echo ^<script type="text/javascript" src="file:///%%A"^>^</script^> >> index.html
|
|
|
|
)
|
|
|
|
echo ^</body^>^</html^> >> index.html
|