#!/bin/bash

num=1

for file in `ls $1`
do
	pre=$(printf "%02d" "$num")
	mv $1/$file $1/$pre$file
	num=`expr $num + 1`
done
