Change the filename

I have 100 files in a directory with
a.1
a.2
a.3
a.4
How do i remove a. and i need the file names as
1
2
3
4
please help

You didn't say what shell you were using, but:

for FILE in a.*; do
  mv "$FILE" "${FILE##*.}"
done

thanks