怎么删除shell脚本中变量的部分值啊

怎么删除shell脚本中变量的部分值啊

我想写一个删除部分文件名的脚本
可不知道怎么改变文件名为原来的一部分
比如把"123name"改为"name"
#!/bin/sh
cd "$1"
for file in *
do
   if [ -e $file ]; then
   newn=  //这里应该怎么写
   mv $file $newn
   fi
done
exit 0      
看看下面两句的结果:

$ xx=123name
$ echo ${xx#123}