Is there anything in the works to make it easier to delete inactive stuff? Something like:
wp plugin delete --inactive
Right now the easiest way I've found to do this is with:
wp plugin list --status=inactive --fields=name --format=csv | tail --lines=+2 | xargs wp plugin delete
...which is not terribly convenient or self-explanatory. If nothing's in the works but people would like it, I'm happy to attempt to cobble something together...
Is there anything in the works to make it easier to delete inactive stuff? Something like:
wp plugin delete --inactiveRight now the easiest way I've found to do this is with:
wp plugin list --status=inactive --fields=name --format=csv | tail --lines=+2 | xargs wp plugin delete...which is not terribly convenient or self-explanatory. If nothing's in the works but people would like it, I'm happy to attempt to cobble something together...