Skip to content

Instantly share code, notes, and snippets.

@isyara
Created January 27, 2015 11:00
Show Gist options
  • Save isyara/437471c97347755423b6 to your computer and use it in GitHub Desktop.
Save isyara/437471c97347755423b6 to your computer and use it in GitHub Desktop.
Convert files to lowercase
#!/bin/bash
for f in *; do mv "$f" "`echo $f | tr "[:upper:]" "[:lower:]"`"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment