#!/bin/tcsh

if ( -r ~/.login ) then 
   source ~/.login
endif


if ( $?PATH ) then
	echo PATH=$PATH
else
	echo PATH=!
endif

if ( $?P4HOST ) then
	echo P4HOST=$P4HOST
else
	echo P4HOST=! 
endif


if ( $?P4PORT ) then
	echo P4PORT=$P4PORT
else
	echo P4PORT=!
endif

if ( $?P4USER ) then
	echo P4USER=$P4USER
else
	echo P4USER=!
endif

if ( $?P4CLIENT ) then
	echo P4CLIENT=$P4CLIENT
else
	echo P4CLIENT=!
endif

if ( $?P4DIFF ) then
	echo P4DIFF=$P4DIFF
else
	echo P4DIFF=!
endif

if ( $?P4MERGE ) then
	echo P4MERGE =$P4MERGE
else
	echo P4MERGE =!
endif

if ( $?P4EDITOR ) then
	echo P4EDITOR=$P4EDITOR
else
	echo P4EDITOR=!
endif

if ( $?P4PASSWD ) then
	echo P4PASSWD=$P4PASSWD
else
	echo P4PASSWD=!
endif