author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Sun, 26 Sep 2010 17:42:45 +0300 | |
changeset 569 | 8ac89cf6908c |
parent 410 | 46d2180b4dc5 |
child 735 | 5c437e2d5fe1 |
permissions | -rw-r--r-- |
99 | 1 |
-*- outline -*- |
2 |
||
355 | 3 |
* Quoting. |
4 |
||
5 |
* Arguments are delimited by white space, which is either a space or a tab. |
|
6 |
* A string surrounded by double quotation marks is interpreted as a single |
|
7 |
argument. |
|
8 |
* A double quotation mark preceded by a backslash, \", is interpreted as a |
|
9 |
literal double quotation mark. |
|
10 |
* Backslashes are interpreted literally, unless they immediately precede a |
|
11 |
double quotation mark. |
|
12 |
* If an even number of backslashes is followed by a double quotation mark, |
|
13 |
then one backslash (\) is placed in the argv array for every pair of |
|
14 |
backslashes (\\), and the double quotation mark (") is interpreted as a |
|
15 |
string delimiter. |
|
16 |
* If an odd number of backslashes is followed by a double quotation mark, |
|
17 |
then one backslash (\) is placed in the argv array for every pair of |
|
18 |
backslashes (\\) and the double quotation mark is interpreted as an escape |
|
19 |
sequence by the remaining backslash, causing a literal double quotation |
|
20 |
mark (") to be placed in argv. |
|
21 |
* In double quote mark need surround such chars: |
|
410
46d2180b4dc5
How quote percent char.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
356
diff
changeset
|
22 |
& < > [ ] { } ^ = ; ! ' + , ` ~ % |
356 | 23 |
Also all this char can be escaped by ^ char. |
24 |
* Long line can be truncated by ^ char, in this case trailing white spaces |
|
25 |
not allowed. |
|
410
46d2180b4dc5
How quote percent char.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
356
diff
changeset
|
26 |
* To quote percent sign % before alpha char in batch file double it |
46d2180b4dc5
How quote percent char.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
356
diff
changeset
|
27 |
occurrences or plase in quotes: |
46d2180b4dc5
How quote percent char.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
356
diff
changeset
|
28 |
prog '%'HOME'%' "%"HOME"%" %%HOME% |
355 | 29 |
|
30 |
http://msdn.microsoft.com/en-us/library/ms880421.aspx |
|
31 |
Parsing C Command-Line Arguments |
|
32 |
||
215 | 33 |
* Variables. |
34 |
||
35 |
Variable name start with letter and underscore, next chars can be letter, |
|
36 |
number and underscore. Variable name is case insensitive. |
|
37 |
||
38 |
** List of variables. |
|
39 |
||
40 |
cmd> set |
|
41 |
... |
|
42 |
VAR=VALUE |
|
43 |
||
44 |
** Getting. |
|
45 |
||
46 |
Write %VAR% in place where you want insert variable VAr value. |
|
47 |
||
48 |
** Setting. |
|
49 |
||
50 |
cmd> set /p VAR=VALUE |
|
51 |
||
52 |
VAR is variable name, VALUE is value. |
|
53 |
||
54 |
** Deleting. |
|
55 |
||
56 |
cmd> set VAR= |
|
57 |
||
58 |
VAR is variable name. |
|
59 |
||
216 | 60 |
** Input from user. |
215 | 61 |
|
62 |
cmd> set /p VAR=PROMPT |
|
63 |
||
64 |
VAR is variable name, PROMPT is displayed prompt. |
|
65 |
||
216 | 66 |
** Input from file. |
215 | 67 |
|
68 |
cmd> set /p VAR=<FILE |
|
69 |
||
70 |
VAR is variable name, FILE is file name. Sfter executing VAR contain first |
|
71 |
line from FILE. |
|
72 |
||
99 | 73 |
* CMD tricks. |
74 |
||
75 |
$ set /p TOOLOUTPUT= < temp.txt |
|
76 |
||
77 |
$ for /f "tokens=*" %%i in ('%~dp0sometool.exe') do set TOOLOUTPUT=%%i |
|
78 |
||
79 |
$ for /f "tokens=1 delims=" %%s in (users.txt) do (echo %%S & command "%%S") >> outputfile.txt |
|
350 | 80 |
|
81 |
* Limits. |
|
82 |
||
83 |
Variable value and one line command string after expansion can not exceed 8191 |
|
84 |
characters for Windows XP and later and 2047 for Windows NT, Windows 2000. |
|
85 |
||
86 |
http://support.microsoft.com/default.aspx?scid=kb;en-us;830473 |
|
87 |
Command prompt (Cmd. exe) command-line string limitation |