Skip to content

Instantly share code, notes, and snippets.

@annalinneajohansson
Created February 9, 2015 20:16
Show Gist options
  • Select an option

  • Save annalinneajohansson/d6e2b3e9b26b355acd1c to your computer and use it in GitHub Desktop.

Select an option

Save annalinneajohansson/d6e2b3e9b26b355acd1c to your computer and use it in GitHub Desktop.
Make all the files in the current directory lower case
#!/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