aqualogue/index.bat
2016-05-13 20:39:02 -05:00

7 lines
No EOL
253 B
Batchfile

echo ^<html^>^<body^> > index.html
copy /y header.html index.html
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