ded bord, but will ask anyway:
Having trouble with an alias to auto-convert all webp's (into the folder I toss all my saved images into before manually moving them, if I ever do) into png's followed by deleting the original webp's:
'cd ~/Pictures/Memes/ && mogrify -format png *.webp && find . -name *.webp -type f -delete && cd ~'
It USED to work, but for no discernible reason (don't remember exactly when this started) it no longer deletes the old webp's. It instead throws up errors like:
> find: paths must precede expression: ?>`Screenshot_20251206-094014.webp'
> find: possible unquoted pattern after predicate `-name'?
Too tech illiterate to know how to proceed from here. Should I be using something other than find?