Skip to content

Instantly share code, notes, and snippets.

@toagit
Created August 29, 2016 08:49
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 toagit/ccb9d947107ec60e37a9e631c174370b to your computer and use it in GitHub Desktop.
Save toagit/ccb9d947107ec60e37a9e631c174370b to your computer and use it in GitHub Desktop.
コマンドプロンプト 大小文字区別しない判定
set /p IS_EXEC=実行しますか?[y/n]
if /i not "%IS_EXEC%"=="y" (
echo 処理をキャンセルします。
goto END
)
echo 終了しました。
:END
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment