Batch file under Win 98
Hy all!
I have a problem writing a batch file under Win 98. Can anyone of you tell me what is the sign under 98 for "^". Under NT its used to jump into the next row.
example (which doesn t work):
javadoc @filelist.txt
-d docs ^
-use ^
-overview overview.html ^
-package ^
-version ^
-author ^
[374 byte] By [
26017] at [2007-9-26 3:28:58]

I don't know if the caret (^) works as a continuation character on Win98, but your example would be incorrect if it were. The caret must be used at the end of every line except the last. It should be:
javadoc @filelist.txt ^
-d docs ^
-use ^
-overview overview.html ^
-package ^
-version ^
-author
-Doug Kramer
Javadoc team