Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.12 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. cd $1
  4.  
  5. for FILE in *
  6. do
  7.     file=`echo "$FILE" | tr [:upper:] [:lower:]`
  8.     mv "$FILE" "$file"
  9. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement