
for file in step2.1*
do
 tag=${file#*_}
 echo $tag
#change name
 cmd="mv "$file" day16.5_"$tag
 echo $cmd
 eval $cmd
done
