ls *.jpg | xargs -n1 sh -c 'convert $0 -thumbnail 200x200 thumbs/$0.png'
ls *.png | xargs -n1 sh -c 'convert $0 -thumbnail 200x200 thumbs/$0.png' 

