#!/bin/bash #----------------------------------------------------------------------- # call: start_loader loader_command_line # # assume that setup script is always called ./source_me # the idea is that it first sources the setup script and then # executes the rest of the line #----------------------------------------------------------------------- source ./source_me # save start time, for timeouts export LOADER_TIME=`date +%s` ./bin/$BFARCH/cdfopr/loader.py $* ; rc=$? exit $rc;