proposal: multiple psql option -c - Mailing list pgsql-hackers

From Pavel Stehule
Subject proposal: multiple psql option -c
Date
Msg-id CAFj8pRC9rgn8rcdsTFSoym+ZWePDLtYu_3HvuxbcOUG5vs1Vog@mail.gmail.com
Whole thread Raw
Responses Re: proposal: multiple psql option -c
Re: proposal: multiple psql option -c
Re: proposal: multiple psql option -c
List pgsql-hackers
Hi

can we support multiple "-c" option?

Why? Because some statements like VACUUM cannot be used together with any other statements with single -c option. The current solution is using echo and pipe op, but it is a complication in some complex scripts - higher complication when you run psql via multiple sudo statement.

Example:

psql -c "select pg_stat_reset()" -c "vacuum full analyze" dbname

or on all db

psql -At -c "select datname from pg_databases" postgres | \
xargs -n 1 -P 3 psql -c "..." -c "..."

Ideas, notes, comments?

Regards

Pavel

pgsql-hackers by date:

Previous
From: Pavel Stehule
Date:
Subject: Re: [PATCH] Generalized JSON output functions
Next
From: Fabrízio de Royes Mello
Date:
Subject: Re: proposal: multiple psql option -c