for i in `find . -maxdepth 1 -type f`
do
folder=$(basename $i | cut -d ‘.’ -f 1) if [ $folder ] then mkdir -p $folder fi
cp $i $folder
done
exit 0
