发布网友
共2个回答
热心网友
#!/bin/bash
DIR=/tmp #这里写你的那个目录
for i in `ls $DIR`
do
cp $i $i.1
done
热心网友
find . -exec cp {} {}.1 \;