# Create an admin user of johndoe with an email of johndoe@example.com
> wp user create johndoe johndoe@example.com --role=administrator --user_pass=password
# Export the database of the website to the current directory as db.sql
> wp db export ./db.sql
# Import the db.sql to the current WordPress database
> wp db import ./db.sql
# Install Plugin
> wp plugin install hello-dolly
# Activate Plugin
> wp plugin activate hello-dolly