echo "Enter File name to copy \c"
read f1
echo "Enter FIle name \c "
read f2
if [ -f $f1 ]
then
cp $f1 $f2
else
echo "$f1 does not exist"
fi
我试过没有争论,所以请建议我怎么做?