Lines Matching refs:cmd
112 cmd /c "exit 42"
116 cmd /c "exit 42"
122 cmd /c "exit /b 42"
126 cmd /c "exit /b 42"
136 cmd /c "nonexisting & exit"
140 cmd /c "nonexisting & exit"
144 cmd /c "nonexisting & exit /b"
148 cmd /c "nonexisting & exit /b"
154 cmd /c "rmdir nonexisting & exit"
158 cmd /c "rmdir nonexisting & exit"
162 cmd /c "rmdir nonexisting & exit /b"
166 cmd /c "rmdir nonexisting & exit /b"
174 cmd /c "dir nonexisting>NUL & exit"
178 cmd /c "dir nonexisting>NUL & exit"
182 cmd /c "dir nonexisting>NUL & exit /b"
186 cmd /c "dir nonexisting>NUL & exit /b"
191 cmd /c "dir nonexisting>NUL & exit 42"
195 cmd /c "dir nonexisting>NUL & exit 42"
199 cmd /c "dir nonexisting>NUL & exit /b 42"
203 cmd /c "dir nonexisting>NUL & exit /b 42"
210 cmd /c "dir>NUL & exit"
214 cmd /c "dir>NUL & exit"
218 cmd /c "dir>NUL & exit 42"
222 cmd /c "dir>NUL & exit 42"
226 cmd /c "dir>NUL & exit /b 42"
230 cmd /c "dir>NUL & exit /b 42"
246 echo nonexisting ^& exit /b> tmp.cmd
248 call tmp.cmd
251 echo nonexisting ^& exit /b> tmp.cmd
253 call tmp.cmd
266 echo rmdir nonexisting> tmp.cmd
267 echo exit /b>> tmp.cmd
269 call tmp.cmd
272 echo rmdir nonexisting> tmp.cmd
273 echo exit /b>> tmp.cmd
275 call tmp.cmd
282 echo rmdir nonexisting ^|^| rem> tmp.cmd
283 echo exit /b>> tmp.cmd
285 call tmp.cmd
289 echo rmdir nonexisting> tmp.cmd
291 call tmp.cmd
294 echo rmdir nonexisting ^|^| rem> tmp.cmd
295 echo exit /b>> tmp.cmd
297 call tmp.cmd
301 echo rmdir nonexisting> tmp.cmd
303 call tmp.cmd
310 echo dir nonexisting^>NUL> tmp.cmd
312 call tmp.cmd
315 echo dir nonexisting^>NUL> tmp.cmd
317 call tmp.cmd
320 echo dir nonexisting^>NUL ^& goto :eof> tmp.cmd
322 call tmp.cmd
325 echo dir nonexisting^>NUL ^& goto :eof> tmp.cmd
327 call tmp.cmd
330 echo dir nonexisting^>NUL ^& exit /b> tmp.cmd
332 call tmp.cmd
335 echo dir nonexisting^>NUL ^& exit /b> tmp.cmd
337 call tmp.cmd
340 echo dir nonexisting^>NUL ^& exit /b 42 > tmp.cmd
342 call tmp.cmd
345 echo dir nonexisting^>NUL ^& exit /b 42 > tmp.cmd
347 call tmp.cmd
353 echo dir^>NUL> tmp.cmd
355 call tmp.cmd
358 echo dir^>NUL> tmp.cmd
360 call tmp.cmd
363 echo dir^>NUL ^& goto :eof> tmp.cmd
365 call tmp.cmd
368 echo dir^>NUL ^& goto :eof> tmp.cmd
370 call tmp.cmd
373 echo dir^>NUL ^& exit /b> tmp.cmd
375 call tmp.cmd
378 echo dir^>NUL ^& exit /b> tmp.cmd
380 call tmp.cmd
383 echo dir^>NUL ^& exit /b 42 > tmp.cmd
385 call tmp.cmd
388 echo dir^>NUL ^& exit /b 42 > tmp.cmd
390 call tmp.cmd
395 del tmp.cmd
419 cmd /c tmp.bat
423 call :outputErrLvlTestToBatch tmp.cmd
424 cmd /c tmp.cmd
425 del tmp.cmd
571 :: This line runs under cmd in windows NT 4, but not in more modern versions.