cd
into that directory.
rsync
command. This will download and install BFD and all the
necessary IceCube and DAQ tools.This rsync command will initially download all the tools into your local tools directory, or fully synchronize the existing local tools directory with the one on glacier.lbl.gov
> rsync --delete -vrlpt
rsync://glacier.lbl.gov/Icecube/ /your/tools/directory
If you've never used rsync before, it is very picky about the location of .'s and /'s. If you issue the above command from ~/icecube/tools the tools will end up there. Deviate from the above command only if you know what your are doing with rsync.
> crontab -e
Insert the following:
15 1 * * * (cd /your/tools/directory &&
/usr/bin/rsync --delete -rlpt
rsync://glacier.lbl.gov:/Icecube/ /your/tools/directory)
Save and exit. Your new entry is now active.