View Single Post
  #6  
Old January 22nd 06, 01:40 AM posted to microsoft.public.win98.shell
external usenet poster
 
Posts: n/a
Default Suppress End of line character in batch filese

Nice Find. Do you have a reference?

FWIW my preference would be to build those strings into variables (as you've
already done for some) and reference the variables from the backup command
line.
--
Jeff Richards
MS MVP (Windows - Shell/User)
"Stephen Ford" . wrote in message
...
Have just found this - use the "^" character at the end of a line with a
leading space on the next line, so ...

ntbackup backup "@E:\Backup bks files\Backup-%NAME%-Data.bks" /F
"E:\Backup bkf files\Backup-%NAME%-Data-%TYPE%.bkf" /j "%NAME% %LNGTYPE%
Data Backup" /l:s /m %LNGTYPE% /n "%NAME%D" /v:yes

... becomes ...

ntbackup backup "@E:\Backup bks files\Backup-%NAME%-Data.bks" ^
/F "E:\Backup bkf files\Backup-%NAME%-Data-%TYPE%.bkf" ^
/j "%NAME% %LNGTYPE% Data Backup" ^
/l:s ^
/m %LNGTYPE% ^
/n "%NAME%D" ^
/v:yes

--
Regards
Stephen Ford

"Jeff Richards" wrote in message
...
Your editor might support a newline character which is ignored by the
command interpreter, depending on what editor you are using.
--
Jeff Richards
MS MVP (Windows - Shell/User)
"Stephen Ford" . wrote in message
...
OK, Thanks. I'd swear I've used such a character to make the code more
readable. Must be thinking of something else.