#!/bin/csh
#
#   Print out info to include in login scripts
#
set frealign_path = `readlink -f "$0"`
set frealign_path = ${frealign_path:h}
#
echo "To install Frealign, please include the following line in the shell login script:"
echo
echo "bash shell:"
echo 'export PATH=${PATH}:'${frealign_path}'/bin'
echo
echo "csh shell:"
echo 'setenv PATH ${PATH}:'${frealign_path}'/bin'
