Saved Bookmarks
| 1. |
Solve : How do I write on more than one line in Dos? |
|
Answer» Help! I'm a total NEWBIE to DOS. I USE WINDOWS XP Home Edition and I was wondering if anybody could help me out. How do I write a COMMAND on more than one line? I need to execute a command which is divided into 3 lines. How do I do that without pressing enter to execute the partially written command?ctrl+ji use this...its a bit not nerdy, but it works echo line one > mybit.bat echo line two >> mybit.bat echo line three >> mybit.bat (NB the double greater than signs add each line to the bat) check it by USING the type comman(type mybit.bat) ;) |
|