Last active
October 12, 2025 20:22
-
-
Save hymkor/8f453fe6aa77e422144f3305b6543425 to your computer and use it in GitHub Desktop.
PostgreSQLのローカルサービスを別窓で起動して、何かキーを押したら終了させるだけのバッチ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@setlocal | |
@set "PROMPT=$G$S" | |
if not "%~1" == "-" ( | |
start "(PostgreSQL)" "%~dpnx0" - | |
exit /b | |
) | |
pg_ctl start | |
pause | |
pg_ctl stop | |
exit | |
rem gist https://gist.github.com/hymkor/8f453fe6aa77e422144f3305b6543425 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment