psql and regex not like - Mailing list pgsql-general

From Ron Johnson
Subject psql and regex not like
Date
Msg-id CANzqJaCmmqNjSNitxWPekwM7mQesZCfAdXjOprKao8Ted35E-w@mail.gmail.com
Whole thread Raw
Responses Re: psql and regex not like
Re: psql and regex not like
Re: psql and regex not like
Re: psql and regex not like
Re: psql and regex not like
List pgsql-general
This statement runs great from the psql prompt.  Does exactly what I want.
select datname from pg_database WHERE datname !~ 'template|postgres' ORDER BY datname;

But it doesn't work so well from the bash prompt.  Not escaping the "!" generates a bunch of garbage, while escaping throws an sql syntax error.

psql -Xc "select datname from pg_database WHERE datname \!~ 'template|postgres' ORDER BY datname;"
ERROR:  syntax error at or near "\"


What's the magic syntax?

(Yes, I could create a view and then query the view, but I'm going to be running this remotely against dozens of servers, so I don't want to have to create dozens of views, then need to recreate them every time I want to change the query.)

--
Death to <Redacted>, and butter sauce.
Don't boil me, I'm still alive.
<Redacted> lobster!

pgsql-general by date:

Previous
From: "Abraham, Danny"
Date:
Subject: Re: [EXTERNAL] Re: Asking for OK for a nasty trick to resolve PG CVE-2025-1094 i
Next
From: Dominique Devienne
Date:
Subject: Re: psql and regex not like