#!/bin/tcsh

#This code handles the command line arguments in the argv array

echo "The command is : $0"
echo "Number of command line arguments are: $#argv "
echo "The first argument is : $argv[1]"
echo "The second argument is : $argv[2]"
echo "The third argument is : $argv[3]"

echo
echo "Another way to print the arguments is : "
echo $argv

