bash – 如何非交互地为psql指定密码?

前端之家收集整理的这篇文章主要介绍了bash – 如何非交互地为psql指定密码?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图用shell脚本自动数据库创建过程和一个事情,我已经通过一个路径块传递密码psql
这里是一些来自shell脚本的代码
psql -U $DB_USER -h localhost -c"$DB_RECREATE_sql"

如何以非交互方式将密码传递给psql

谢谢!

official documentation

It is also convenient to have a ~/.pgpass file to avoid regularly having to type in passwords. See 07001 for more information.

原文链接:/bash/392658.html

猜你在找的Bash相关文章