On 04/19/2015 03:35 PM, Bertrand Jaquin wrote:
> +             find "${root}" \( -path "${no_inst}" -or -name "${no_inst}" \) 
> 2> /dev/null \
> +             | while read; do
> +                     __quiet_mode || einfo "Removing /${REPLY#${root}}"
> +                     rm -Rf "${REPLY}" >&/dev/null
> +             done
> +

Please use "find -print0 | while read -r -d ''" to ensure that it works
will all possible paths.
-- 
Thanks,
Zac

Reply via email to