#!/bin/bash
# url: http://pank.org/scripts/
# description: rename all files in current directory to upper case
# comment: bash
# platform: all

for f in *
do 
   mv -- "$f" "$(tr [:lower:] [:upper:] <<< "$f")"
done