#!/bin/csh
echo $#argv is the number of arguments
echo $10cheese
echo ${1}0 
echo $argv[2] $2 '$argv[2] $2' are both the 2nd argument
echo ===
echo '$argv is:' $argv
echo ===
echo '$* is:' $* 
echo ===
echo '$argv[*] is:' $argv[*] 
echo ===
echo "$0 is this program" '(using $0)'
echo ===
echo $argv[0] '$argv[0]' Does not work
echo ===
echo $#argv is '$#argv, the number of arguments'
echo ===
echo '$argv[1-3] is the first three:' $argv[1-3]
echo ===
echo $10
echo ===
echo $9
echo ===
echo $argv[9]
echo $10
