There is an zsh specific commando in the page, which is confusing. It's this one (which deletes recursive, but -r and _/_\* is doing the same) ``` rm -rf */** ``` If I want to delete the content of a folder, it would be enough to do ``` rm -r * ```
There is an zsh specific commando in the page, which is confusing.
It's this one (which deletes recursive, but -r and /* is doing the same)
If I want to delete the content of a folder, it would be enough to do