robo555
09-22-2000, 09:28 AM
I done a batch file for backing my stuff up, and just for eye candy (if you can call DOS eye candy), I added a few echo commands to tell the user what's happening, my question is, how to I put gaps between the lines?
My batch file goes something like this:
@echo off
echo Backing up ICQ db
copy blah blah
echo Back up successful
echo Backing up My Docs
copy blah blah
echo Back up successful
And on the screen it shows up as:
Backing up ICQ db
Back up successful
Backing up My Docs
Back up successful
But I want it to look like:
Backing up ICQ db
Back up successful
Backing up My Docs
Back up successful
So how to I put a gap between the lines? I tried putting empty echo tags in there and it didn't do anything.
My batch file goes something like this:
@echo off
echo Backing up ICQ db
copy blah blah
echo Back up successful
echo Backing up My Docs
copy blah blah
echo Back up successful
And on the screen it shows up as:
Backing up ICQ db
Back up successful
Backing up My Docs
Back up successful
But I want it to look like:
Backing up ICQ db
Back up successful
Backing up My Docs
Back up successful
So how to I put a gap between the lines? I tried putting empty echo tags in there and it didn't do anything.