我可以在bash脚本中运行’su’吗?

前端之家收集整理的这篇文章主要介绍了我可以在bash脚本中运行’su’吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我可以在脚本中改变/ 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.相反,做:
su postgres -c 'dropdb $user'

-c标志以用户身份运行命令(见man su).

原文链接:https://www.f2er.com/bash/386584.html

猜你在找的Bash相关文章