Search found 1 match
- 18 Sep 2009 18:24
- Forum: DOS Batch Forum
- Topic: Quotes, Spaces in Args interpreted inconsistently?
- Replies: 1
- Views: 4341
Quotes, Spaces in Args interpreted inconsistently?
Hi, Consider the following test.bat file: @echo off echo 1:%1 2:%2 3:%3 now run each of the following commandlines: C:\>test.bat hi bye now 1:hi 2:bye 3:now C:\>test.bat ""hi" "bye"" now again 1:""hi" "bye"" 2:now 3:again C:\>test.bat "...