#!/bin/bash for f in *; do new=$(echo "$f" | tr '[:upper:]' '[:lower:]') mv "$f" "$new" done