If you're building WordPress or Laravel apps, you can speed up tasks with command-line tools like WP-CLI and Artisan.

Using WP-CLI:

  1. Connect via SSH.
  2. Navigate to your WordPress directory:
    cd ~/public_html
  3. Run commands like:
    wp plugin update --all
    wp core update

Using Artisan (Laravel):

  1. Navigate to Laravel app root:
    cd ~/public_html/laravel
  2. Run:
    php artisan migrate
    php artisan config:cache

WP-CLI and Artisan are pre-supported in most Aviumshost environments with SSH access.