files=`ls *.jpg | cut -d. -f1`
for file in $files
do
	convert $file.jpg -crop 50000x1100+0+0 crop/$file.jpg
done
