grep to delete WordPress 'crunched' files grep to delete WordPress 'crunched' files wordpress wordpress

grep to delete WordPress 'crunched' files


If you're on Linux, you can use shell globbing to achieve this.

ls *[0-9-]*

If this gives you the files you want, you can delete them:

rm -i *[0-9-]*

Remove the -i if there are a lot of files.