我在Google Cloud实例上运行postgres数据库,我们每天都会删除并重新创建这个数据库,作为我们每晚构建的一部分.
目前这是手动完成的,我想自动化它.
原文链接:https://www.f2er.com/bash/385221.html目前这是手动完成的,我想自动化它.
gcloud compute ssh --zone europe-west2-c postgres@postgresql-dev -- "dropdb mydb" gcloud compute ssh --zone europe-west2-c postgres@postgresql-dev -- "createdb mydb" gcloud compute ssh --zone europe-west2-c postgres@postgresql-dev -- "psql postgres -c 'GRANT ALL PRIVILEGES ON DATABASE mydb to myuser;' "
这可以很好地删除并重新创建数据库,当我必须重新设置密码时问题就出现了…
gcloud compute ssh --zone europe-west2-c postgres@postgresql-dev -- "psql postgres -c 'ALTER USER myuser WITH PASSWORD 'passwordhere' ; "
gcloud命令已经在使用双引号,psql postgres -c已经在使用单引号,我应该使用什么引号将密码放在引号中?
我试过转义引号,但它不起作用:
WITH PASSWORD \'passwordhere\'
ERROR: Syntax error at or near “\” LINE 1: ALTER USER myuser WITH
PASSWORD \passwordhere’
要么
WITH PASSWORD \"passwordhere\"
bash: -c: line 0: unexpected EOF while looking for matching `” bash:
-c: line 1: Syntax error: unexpected end of file
我如何逃避这些报价?