Convert file names to lowercase

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

© 2024 Code0x378