1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-07 00:05:59 +02:00

psql.md: minor rephrasing

This commit is contained in:
Waldir Pimenta 2016-08-08 08:48:21 +01:00 committed by GitHub
parent 5f43335dc6
commit 4a3cb444e4

View file

@ -14,7 +14,7 @@
`psql -h {{host}} -p {{port}} -U {{username}} -W {{database}}`
- Execute a single SQL query or PostgreSQL command on the given database. Note: useful in shell scripts:
- Execute a single SQL query or PostgreSQL command on the given database (useful in shell scripts):
`psql -c '{{query}}' {{database}}`