Files
xkm-server/global_world_900_1/tools/build/changecshapname.sh

15 lines
159 B
Bash
Raw Permalink Normal View History

2025-05-20 15:31:00 +08:00
#!/bin/sh
if [ $# -lt 1 ];then
echo "Usage: $0 filename"
fi
if [ ! -e $1 ];then
exit 0
fi
newname=`echo $1 | sed -e "s/Tdr/Pb/g"`
mv $1 $newname