wp-cli / handbook

📖 Complete documentation for WP-CLI
https://make.wordpress.org/cli/handbook/
MIT License
187 stars 324 forks source link

Fix: Replacement added for the && #444

Closed SH4LIN closed 1 year ago

SH4LIN commented 1 year ago

Issue: https://github.com/wp-cli/cache-command/issues/60

$ wp transient delete --all --network && wp site list --field=url | xargs -n1 -I % wp --url=% transient delete --all

Should be:
$ wp transient delete --all --network && wp site list --field=url | xargs -n1 -I % wp --url=% transient delete --all

Resolved