#!/bin/csh
# CSC 271 Midterm Exam, Fall 1994, problem 4
# Write a shell script which outputs an exact copy of itself to
# stdout.  You may _not_ assume the script is named anything in
# particular, i.e. it should still work if somebody renames it.
cat $0
