#!/bin/sh
# Copies all the named files or standard input to standard output
# preceding each line of output with a line number.

grep -n '^' $*
