فهرست منبع

psql: use here-strings instead of echo

Igor Shubovych 11 سال پیش
والد
کامیت
b74dff1d79
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      pages/common/psql.md

+ 2 - 2
pages/common/psql.md

@@ -14,6 +14,6 @@
 
 `psql -c '{{query}}' {{database}}`
 
-- Run semicolon-separated *queries* against the given *database*. Note: useful in shell scripts
+- Run several queries against the given *database*. Note: useful in shell scripts
 
-`echo '{{queries}}' | psql {{database}}`
+`psql {{database}} <<< "{{query1}}; {{query2}}"`