Magellan Linux

Diff of /mcore-src/trunk/mcore-tools/src/include/daemon.global.class.in

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

revision 2083 by niro, Fri May 10 13:14:35 2013 UTC revision 2091 by niro, Mon May 13 07:06:33 2013 UTC
# Line 411  list_files_in_directory() Line 411  list_files_in_directory()
411   -mindepth) shift; opts+=" -mindepth $1" ;;   -mindepth) shift; opts+=" -mindepth $1" ;;
412   -maxdepth) shift; opts+=" -maxdepth $1" ;;   -maxdepth) shift; opts+=" -maxdepth $1" ;;
413   -type) shift; type="$1" ;;   -type) shift; type="$1" ;;
414   -name) shift; opts+="-name $1" ;;   -name) shift; opts+=" -name $1" ;;
415   '') continue ;;   '') continue ;;
416   *) path="$1" ;;   *) path="$1" ;;
417   esac   esac
# Line 433  list_files_in_directory() Line 433  list_files_in_directory()
433   # default to files   # default to files
434   [[ -z ${type} ]] && type=f   [[ -z ${type} ]] && type=f
435    
436   for i in $(find ${path} ${opts} -type ${type} -print '%f\n' | sort)   for i in $(find ${path} ${opts} -type ${type} -printf '%f\n' | sort)
437   do   do
438   if [[ -z ${retval} ]]   if [[ -z ${retval} ]]
439   then   then

Legend:
Removed from v.2083  
changed lines
  Added in v.2091