!/bin/bash ROOTPASS="password" echo "Enter username to delete:" read USERNAME mysql -uroot --password=$ROOTPASS -e "DROP USER $USERNAME@localhost" mysql -uroot --password=$ROOTPASS -e "DROP DATABASE $USERNAME" rm -f /etc/nginx/sites-enabled/$USERNAME.conf rm -f /etc/nginx/sites-available/$USERNAME.conf rm -f /etc/php5/fpm/pool.d/$USERNAME.conf service nginx reload service php5-fpm reload userdel -rf $USERNAME