今天把Red Hat Enterprise Linux 5更换成了SUSE Linux,giam中MSN的聊天记录的文件名不兼容。
要把很多类似2007-04-16.035144+0800CST.html的文件名改成2007-04-16.035144.html
写了个bash脚本,改下文件名,贴出来,用的着的话作简单修改就行了:
ls 2007* > temp
awk '{print$1,$1}' temp > temp.sh
sed -i 's/^/mv /' temp.sh
sed -i 's/+0800CST//2' temp.sh
echo '#!/bin/sh' > temp
cat temp.sh >> temp
mv -f temp temp.sh
chmod 777 temp.sh
./temp.sh
rm -f temp.sh

