#!/bin/sh
# Simple Script to move
# all files != defined extention from the current dir
# to the $extention
#Under GPL ver 2.0
extention="zip";
echo "Move To extention v 0.1 by hip0";
echo '-=-=-=-=-=-=-=-=-=-=-=-';

for i in `ls -1`; do
if [ -z "`echo $i | grep $extention`" ] && [ $i != "`basename $0`" ]; then
mv $i $i.$extention;
echo "Moving $i to $i.zip.";
fi
done

echo "Mission Accompled ... :].";
