#!/bin/csh -f

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

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