Installation issue on unix

Hello all,

I encounter the error below while trying to install atat on my unix machine:

./foolproof.sh /home/eej452/bin/ "g++"
/bin/csh cannot be found. Please install it or create a symbolic link from /bin/csh to /usr/bin/tcsh , if installed.
make: *** [all] Error 1
I typically have a /bin/bash file.

Regards,
Ericmoore Jossou
PhD student,
University of Saskatchewan

Some of ATAT’s scripts are written in c shell (csh) so you need csh on your machine.
Typically even if /bin/csh is missing, the compatible /bin/tcsh is there.
So creating a symbolic link fixes the problem.
As an administrator, type
cd /bin
ls /usr/bin/tcsh # check if tcsh is there
ln -s /usr/bin/tcsh csh
#otherwise try
ls /bin/tcsh
ln -s /bin/tcsh csh