Skip to content

Instantly share code, notes, and snippets.

@hymkor
Last active October 12, 2025 20:22
Show Gist options
  • Save hymkor/8f453fe6aa77e422144f3305b6543425 to your computer and use it in GitHub Desktop.
Save hymkor/8f453fe6aa77e422144f3305b6543425 to your computer and use it in GitHub Desktop.
PostgreSQLのローカルサービスを別窓で起動して、何かキーを押したら終了させるだけのバッチ
@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