I'm trying to use a recursive command to minify images on my project, but when i execute the command, it give this error:
"The parameter command is still specified"
The command is:
find . -name "*.jpg" -exec imagemin {}/* --out-dir={}/* \;
What is wrong with this? I'm using Windows 10.
Thank you