Skip to content

Instantly share code, notes, and snippets.

@gologius
Last active February 14, 2018 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gologius/e7b0fa95a2da6c95ad5f978cab45dcc9 to your computer and use it in GitHub Desktop.
Save gologius/e7b0fa95a2da6c95ad5f978cab45dcc9 to your computer and use it in GitHub Desktop.
rem 通常タイプ
tasklist | find "firefox.exe" > NUL
if ERRORLEVEL 1 (
echo not found
) else (
echo not found
)
rem 無駄な出力をしないタイプ
@tasklist | find "firefox.exe" > NUL
@if errorlevel 1 (
echo not found
@pause
) else (
echo found
@pause
)
echo finish
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment