Windows Batch Scripting/Tips and Tricks

From Wikibooks, open books for an open world
Jump to navigation Jump to search

This page contains tips for when you are using the windows command prompt. Some of these tips will not be immediately obvious so it's worth giving this module a quick read.

Create an Empty File[edit | edit source]

TYPE NUL > EmptyFile.txt

Continue a Line[edit | edit source]

The caret '^' is the escape character in cmd.exe. It can be used to continue a command across a line end if it is the last character on a line.

C:\>ECHO Hello ^
More? World
Hello World

C:\>