#!/bin/sh

for f in `ls photo*.jpg`; do
	nf=`echo $f | cut -d'-' -f2`
	mv $f $nf
done
