是掉了 in 我补上了
http://technet.microsoft.com/en-us/library/bb490909.aspx
The filenameset argument specifies one or more file names. Each file is opened, read and processed before going on to the next file in filenameset. To override the default parsing behavior, specify "ParsingKeywords". This is a quoted string that contains one or more keywords to specify different parsing options.
If you use the usebackq option, use one of the following syntaxes:
for /F {%% | %}variable in ("filenameset") do command
for /F {%% | %}variable in ('LiteralString') do command
for /F {%% | %}variable in (`command`) do command
The following table lists the parsing keywords that you can use for ParsingKeywords.
以上是来自微软的官方网站的原文,从这里可以看出usebackq就是废除默认强调的意思。
Last edited by 5yue5 on 2009-2-24 at 19:00 ]