- Timestamp:
- Feb 2, 1998, 12:00:54 PM (26 years ago)
- Branches:
- (u'spielwiese', 'e7cc1ebecb61be8b9ca6c18016352af89940b21a')
- Children:
- 72b0185d20e715a3d71be25dfc5daea9648173ec
- Parents:
- 398b159675ea40db687c120e543d205931c617d8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/fex/runfex
r398b15 rb0c783 1 1 #! /home/schmidt/bin/bash 2 # $Id: runfex,v 1. 4 1998-01-30 15:23:43schmidt Exp $2 # $Id: runfex,v 1.5 1998-02-02 11:00:54 schmidt Exp $ 3 3 4 4 #{{{ docu … … 39 39 # collectionEnvironment: options and environment for the 40 40 # examples. Used by runAlgorithm(). 41 # runConfiguration: which configurations' executables to use. 42 # Used by runAlgorithm(). 41 43 # collectionROOptions: options to print run overview. Use by 42 44 # main(). … … 54 56 runEnvironment="" 55 57 runTBOptions="" 58 runConfiguration="opt" 56 59 57 60 collectionOptions="" … … 92 95 # 93 96 # Global variables used: 94 # runOptions, runEnvironment, 97 # runOptions, runEnvironment, runConfiguration, 95 98 # collectionOptions, collectionEnvironment, 96 99 # exampleOptions, exampleEnvironment, … … 113 116 114 117 if [ -n "$debugMode" ]; then 115 echo "calling $algorithmName " $algorithmOptions "$outputOptions" "$algorithmEnvironment" "$@"118 echo "calling $algorithmName.$runConfiguration" $algorithmOptions "$outputOptions" "$algorithmEnvironment" "$@" 116 119 else 117 "$algorithmName " $algorithmOptions "$outputOptions" "$algorithmEnvironment" "$@"120 "$algorithmName.$runConfiguration" $algorithmOptions "$outputOptions" "$algorithmEnvironment" "$@" 118 121 fi 119 122 } … … 448 451 # read options 449 452 typeset opt 450 while getopts "n:a:c: t:r:d" opt; do453 while getopts "n:a:c:C:t:r:d" opt; do 451 454 case "$opt" in 452 455 (n) runNote="$OPTARG" ;; 453 456 (a) runOptions="$runOptions -a$OPTARG" ;; 454 457 (c) runOptions="$runOptions -c$OPTARG" ;; 458 (C) runConfiguration="$OPTARG" ;; 455 459 (t) runTBOptions="$OPTARG" ;; 456 460 (r) runROOptions="$OPTARG" ;;
Note: See TracChangeset
for help on using the changeset viewer.