If this can be confirmed, here is a cleaner solution which also works both with bash and dash.
-- Raph
64,65c64
< sourcelen=${#source}
< file=/${i:$sourcelen}
---
> file=${i#$source}
If this can be confirmed, here is a cleaner solution which also works both with bash and dash.
-- Raph
64,65c64
< sourcelen=${#source}
< file=/${i:$sourcelen}
---
> file=${i#$source}