#!/bin/csh -f

# Change uppercase letters in standard input to lowercase on standard
# output.

tr '[:upper:]' '[:lower:]'
