#!/bin/tcsh

#This code demonstrates the usage of quotes in shell programming

echo  "*****************************************"
echo `date`

set currentdir = `pwd`   #Use of backquotes

echo "Current working directory is : $currentdir"

echo 
echo 'Current working directory is : $currentdir'


echo  "*****************************************"
