csh stderr redirection

Hi everyone,

Simple scripting question here. I have:

#!/bin/csh
if ( -e $HOME/.core) then
rm -f $HOME/
.core >& /dev/null
else
echo "No core files to delete."
endif

But I keep getting the /home/user/*.core: no match
dialog. How can I suppress this? or, why is the stderr
redirect not working? Thanks in advance.