#! /bin/tcsh
# Another nice script by /*CANO-2005*/


setenv here `pwd` 
echo " "
echo "PWD: $here"

#ENVIRONMENTS
#########################################################################

setenv LO 1
setenv HI 100000
setenv STEP 1
setenv NO 0

@ NO = $LO
while ( $NO <= $HI )

   echo "$NO"
  
   @ NO = $NO + $STEP
end
