echo of \C foo

Started by Matt Zagrabelnyover 4 years ago3 messagesgeneral
Jump to latest
#1Matt Zagrabelny
mzagrabe@d.umn.edu

Greetings,

I am using the \C command in psql to set a title for my table.

psql is echoing 'Title is "foo"'.

$ \C foo
Title is "foo".

How do I suppress the echo of "Title is..." from psql?

Thanks for any help!

Cheers,

-m

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Matt Zagrabelny (#1)
Re: echo of \C foo

Matt Zagrabelny <mzagrabe@d.umn.edu> writes:

$ \C foo
Title is "foo".

How do I suppress the echo of "Title is..." from psql?

The -q switch would do it ...

regards, tom lane

#3Matt Zagrabelny
mzagrabe@d.umn.edu
In reply to: Tom Lane (#2)
Re: echo of \C foo

On Tue, Aug 31, 2021 at 11:10 AM Tom Lane <tgl@sss.pgh.pa.us> wrote:

Matt Zagrabelny <mzagrabe@d.umn.edu> writes:

$ \C foo
Title is "foo".

How do I suppress the echo of "Title is..." from psql?

The -q switch would do it ...

Thank you, Tom!

-m