我在运行 bash 脚本自行设置 WP-CLI 时遇到问题。继续收到 wp no command found 错误。请帮忙。
#!/bin/bash
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
chmod +x wp-cli.phar
mv wp-cli.phar /usr/local/bin/wp
exec bash
wp --info
wp plugin install taxonomy-terms-order --path=/var/www
wp plugin activate taxonomy-terms-order --path=/var/www
它只运行到 exec bash 行。之后它没有安装任何插件。请帮忙。