Magellan Linux

Diff of /branches/R11-unstable/include/mtools.sminc

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 10935 by niro, Sun Feb 5 14:10:16 2012 UTC revision 11761 by niro, Tue Mar 27 12:11:21 2012 UTC
# Line 636  mcopy() Line 636  mcopy()
636   # recursive   # recursive
637   if [[ $1 = -r ]] || [[ $1 = -R ]]   if [[ $1 = -r ]] || [[ $1 = -R ]]
638   then   then
639   opts="--recursive"   opts="-R"
640   source="$2"   source="$2"
641   dest="$3"   dest="$3"
642   fi   fi
# Line 644  mcopy() Line 644  mcopy()
644   # recursive   # recursive
645   if [[ $1 = -rf ]] || [[ $1 = -fr ]] || [[ $1 = -Rf ]] || [[ $1 = -fR ]]   if [[ $1 = -rf ]] || [[ $1 = -fr ]] || [[ $1 = -Rf ]] || [[ $1 = -fR ]]
646   then   then
647   opts="--recursive --force"   opts="-R -f"
648   source="$2"   source="$2"
649   dest="$3"   dest="$3"
650   fi   fi
651    
652   if [[ $1 = -a ]]   if [[ $1 = -a ]]
653   then   then
654   opts="--archive"   opts="-a"
655   source="$2"   source="$2"
656   dest="$3"   dest="$3"
657   fi   fi
# Line 671  mmove() Line 671  mmove()
671   # force   # force
672   if [[ $1 = -f ]]   if [[ $1 = -f ]]
673   then   then
674   opts="--force"   opts="-f"
675   source="$2"   source="$2"
676   dest="$3"   dest="$3"
677   fi   fi
# Line 717  mchown() Line 717  mchown()
717   # recursive   # recursive
718   if [[ $1 = -r ]] || [[ $1 = -R ]]   if [[ $1 = -r ]] || [[ $1 = -R ]]
719   then   then
720   local recursive="--recursive"   local recursive="-R"
721   local owner="$2"   local owner="$2"
722   local path="$3"   local path="$3"
723   fi   fi
# Line 737  mchmod() Line 737  mchmod()
737   # recursive   # recursive
738   if [[ $1 = -r ]] || [[ $1 = -R ]]   if [[ $1 = -r ]] || [[ $1 = -R ]]
739   then   then
740   local recursive="--recursive"   local recursive="-R"
741   local posix="$2"   local posix="$2"
742   local path="$3"   local path="$3"
743   fi   fi

Legend:
Removed from v.10935  
changed lines
  Added in v.11761