|
发表于 2020-1-29 11:09:02
|
显示全部楼层
the other way
#!/bin/sh
ddir=$1
shift
if [ ! -e $ddir -o ! -w $ddir ] ; then
echo "The dir is not found!"
return
fi
for file in $* ; do
if [ -e $file -a -r $file ] ; then
mv $file $ddir
else
echo "the operation on file $file is fail!"
fi
done
|
|