P
Praetorian Guard
The following code snippet can be used to detect if FINDSTR is available:
FINDSTR /? >NUL 2>&1
IF ERRORLEVEL 1 ECHO FINDSTR not available!What does 2>&1 mean?Thanks in
advance.
FINDSTR /? >NUL 2>&1
IF ERRORLEVEL 1 ECHO FINDSTR not available!What does 2>&1 mean?Thanks in
advance.