Skip to content

Instantly share code, notes, and snippets.

@georgik
Created September 4, 2016 10:31
Show Gist options
  • Save georgik/acc9a83553d8724e5c8845872cf44809 to your computer and use it in GitHub Desktop.
Save georgik/acc9a83553d8724e5c8845872cf44809 to your computer and use it in GitHub Desktop.
Rename files in current directory to lower case - bash
#!/bin/bash
for I in *; do
mv $I `echo $I|tr [A-Z] [a-z]`
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment