if [ ! -d $1 ]thenecho "$1 is not a dir"exit 1fidir=$1shiftuntil [ $# -eq 0 ]doif [ -f $1 ]thenecho "copy file $1 to $dir"cp $1 $direlseecho "$1 is not a file,skip"fishiftdone