#!/bin/csh
set path = ($path .)
setenv COMMAND $0
@ n = $1
if ( $n < 1 ) then
    exit 0
else
    echo $n
    @ t = $n - 1
    $COMMAND $t
endif
