Advertisement
Typhoon

Linux Hints

Dec 7th, 2016
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.14 KB | None | 0 0
  1. # Rename > Lowercase all files :
  2. ls | while read upName; do loName=`echo "${upName}" | tr '[:upper:]' '[:lower:]'`; mv "$upName" "$loName"; done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement