#!/bin/csh -f
# Copies each file or standard input to standard output
# with words (seperated by blanks and/or tabs) output one per line.

cat $* | tr -s '\011\040' '\012\012'
 
			
