Files
wangzelin.wzl 93a1074b0c patch 4.0
2022-10-24 17:57:12 +08:00

9 lines
106 B
Bash
Executable File

# cp *.tmp to *.result
for f in `ls *.tmp`
do
echo $f
ff=`echo ${f%%.tmp}`
mv $f $ff.result
rm -f $f
done