Useful WP CLI Commands
Update Multisite Permalinks
wp site list --field=url | xargs -n1 -I site wp rewrite structure '/news/%postname%/' --url=site
Delete all posts from a site
Delete all posts with the post type of post
from a site, skip the trash can
wp post delete $(wp post list --post_type=post --url=SITE_URL --format=ids) --url=SITE_URL --force