Recusively rename files and folders via bash

Arch Linux
<p>Can't get rename variants too work reliably. Just using this for now....</p> <pre><code>find . -name '*A-Z*' -type f -exec bash -c 'echo {} | mv {} $(tr A-Z a-z)' \; </code></pre>

© 2026 Code0x378