Convert file names to lowercase

bash
bash
for f in *; do mv "$f" "`echo $f | tr ": upper: " ": lower: "`"; done

© 2025 Code0x378