swh:1:snp:af87cd67498ef4fe47c76ed3e7caffe5b61facaf
Raw File
Tip revision: 0585d9f9ed27adc562735ff528f76f90ab0e0b74 authored by Axel Naumann on 24 June 2015, 12:24:33 UTC
Update ROOT version files to v6.02/12.
Tip revision: 0585d9f
roots.in
#!/bin/sh

#
# $Id$
#
#
# Template for the 'roots.sh' script.
# In case of problems with 'ssh' not executing the relevant <shell>rc init
# script, an ad hoc version of this script can be put, for example, under
# $HOME/bin, defining explicitly $ROOTSYS, e.g.
#
# ----------------------------------------------------------------------
# #!/bin/sh
#
# ROOTSYS=/afs/cern.ch/sw/lcg/external/root/5.15.06/slc4_amd64_gcc34
# cd $ROOTSYS
# source bin/thisroot.sh
# cd
#
# echo "Using ROOT at $ROOTSYS"
#
# exec $ROOTSYS/bin/roots.exe "$@"
# -----------------------------------------------------------------------
#
# In such a case to start the remote session do
#
#    root [0] .R lxplus ~/bin/roots
#    lxplus:root [1]
#

cd $ROOTSYS
source bin/thisroot.sh
cd

echo "Using ROOT at $ROOTSYS"

exec @bindir@/roots.exe "$@"
back to top