Shell: remove file extension

If you want to remove .gif from files:

#!/bin/sh

for file in *.gif
    do
       mv ${file} ${file%.gif}
    done