uutils doesn't remove `b/d` in the following example ```bash $ mkdir -p b/a/p $ mkdir b/c b/d $ chmod -w b/a $ rm -rf b rm: cannot remove 'b': Permission denied $ ls b a d ``` but GNU removes `b/d` That's probably because of [`fs::remove_dir_all`](https://doc.rust-lang.org/std/fs/fn.remove_dir_all.html) behavior