To echo a Tab character in a batch file |
|
Posted Thursday, 24 May 2007 by Michael Khanin To echo a Tab character in a batch file: 1. Edit your batch file in Notepad or any other text editor.
Example:If you type the following, replacing each occurance of <TAB> with the Tab key:@echo %computername%<TAB><TAB><TAB>%UserName%<TAB><TAB><TAB># The following should be displayed: Pelekan-pc Pelekan # |