#!/bin/csh -f echo Changing to $HOME cd $HOME # echo Copying tarfile to $HOME cp /data/tmp/scalapack.tar.gz $HOME/. # echo Uncompressing file gunzip $HOME/scalapack.tar.gz # echo Extracting contents from tarfile and creating scalapack directory tar -xvf $HOME/scalapack.tar # echo Cleaning Up rm $HOME/scalapack.tar