This fixes #168 as it switches from -delete which acts like rmdir to -exec rm -r + which is like: rm -r folder1 folder2
There is also -exec rm -r \; that would be like rm -r folder1;rm -r folder2 but I'd hope we don't get past maximum argument length cleaning the folders we just created. I'm documenting this here as it is an easy 2 character change if the other option is preferred.
This fixes #168 as it switches from
-delete
which acts likermdir
to-exec rm -r +
which is like:rm -r folder1 folder2
There is also
-exec rm -r \;
that would be likerm -r folder1;rm -r folder2
but I'd hope we don't get past maximum argument length cleaning the folders we just created. I'm documenting this here as it is an easy 2 character change if the other option is preferred.Thank you for keeping this together!