- Jul
- 445
- 6
The help documentation shows switch order:
SELECT [/1 /A[[:][-][+]rhsadecijopt] /C /D /E /H /I"text" /J /L /O........
which doesn't work as documented
Using the following order works.
I also tested the /1 /c /d /e /h switches and received the same error message when they proceed
/I"text".
Recommend the /i"text" precede the /1 /A... /C /D /E /H in the docs.
This issue exists with both V16.03.55 x64 and V17.00.53 x64
SELECT [/1 /A[[:][-][+]rhsadecijopt] /C /D /E /H /I"text" /J /L /O........
which doesn't work as documented
Code:
D:\bat>select /a:-r /i"[]" describe (*)
TCC: (Sys) The parameter is incorrect.
"i"[]""
Usage : SELECT [/A[[:][-][+]rhsdaecjot] /CDEH /I"text" /JL /O[[:][-]acdeginorsu] /Q /T:acw /XZ /1] [command ] ... (files...) ...
D:\bat>select /a:-r /i"*4nt*" describe (*)
TCC: (Sys) The parameter is incorrect.
"i"*4nt*""
Usage : SELECT [/A[[:][-][+]rhsdaecjot] /CDEH /I"text" /JL /O[[:][-]acdeginorsu] /Q /T:acw /XZ /1] [command ] ... (files...) ...
Code:
D:\bat>select /i"[]" /a:-r describe (*)
D:\bat>select /i"*4nt*" /1 describe (*)
D:\bat>select /i"*4nt*" /a:-r describe (*)
/I"text".
Recommend the /i"text" precede the /1 /A... /C /D /E /H in the docs.
This issue exists with both V16.03.55 x64 and V17.00.53 x64