#!/bin/tcsh -f # The C shell doesn't actually parse input. # Hitting break will branch into the middle of the HERE document. # -IAN! idallen@ncf.ca echo "Start of silly CSH script." echo "Please hit INTERRUPT." onintr quit sleep 999 cat << EOF quit: echo Amazing how this prints. exit 88 # this exit is taken when break is hit EOF quit: echo You never get here.