我可以在脚本中改变/ su用户吗?
if [ "$user" == "" ]; then echo "Enter the table name"; read user fi gunzip * chown postgres * su postgres dropdb $user psql -c "create database $user with encoding 'unicode';" -U dbname template1 psql -d $user -f *.sql
你可以,但是bash不会以后续的命令运行postgres.相反,做:
原文链接:https://www.f2er.com/bash/386584.htmlsu postgres -c 'dropdb $user'
-c标志以用户身份运行命令(见man su).