How about something like this:
Code:
#!/bin/bash
for FILE in `ls`
do
NEWFILE=`echo $FILE | sed 's/\.dct//'`
cp $FILE $NEWFILE
done
This is only one approach, and doesn't consider any error cases (what if the file is a directory, for example?) but the code should give you the basic idea.
Hope this helps.