#!/bin/bash

ls -1 | while read i;do mv -v $i $(echo $i | tr A-Z a-z);done


