Code: Select all
(
dir ^
t*.cmd
)
Code: Select all
(
di^
r t*.cmd
echo abc
)
'r' is not recognized as an internal or external command,
operable program or batch file.
abc
Code: Select all
(
dir t^
*.cmd
)
Code: Select all
(
dir^
t*.cmd
)
't*.cmd' is not recognized as an internal or external command, operable program or batch file.
Code: Select all
(
^<space>
dir ^
t*.cmd
)
' ' is not recognized as an internal or external command,
operable program or batch file.
<DIR RESULT>
Code: Select all
(
^
<space>
dir ^
t*.cmd
)
The syntax of the command is incorrect.