79075835

Date: 2024-10-10 19:18:49
Score: 0.5
Natty:
Report link

Sorry if I'm way too late..., but here is how I did it if anyone came across this in the future

find . -name "*.tif" \
  -exec sh -c 'exec magick convert "$1" "${1%.tif}.png"' _ {} \; \
  -exec sh -c 'rm -rf "$1"' _ {} \;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Quang1999