Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-20 00:21:08 +00:00
parent 9c64f72b0c
commit c3f5e8d7ab
19 changed files with 409 additions and 8 deletions

21
tldr/pg_controldata Normal file
View File

@@ -0,0 +1,21 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# pg_controldata
> Display control information of a PostgreSQL database cluster.
> More information: <https://www.postgresql.org/docs/current/app-pgcontroldata.html>.
- Display control information for a specific data directory:
`pg_controldata {{[-D|--pgdata]}} {{path/to/data}}`
- Display help:
`pg_controldata {{[-?|--help]}}`
- Display version:
`pg_controldata {{[-V|--version]}}`