Jpp test-rotations-old
the software that should make you happy
Loading...
Searching...
No Matches
JCheckTriggerParameters.sh
Go to the documentation of this file.
1#!/usr/bin/env zsh
2#
3# \author mdejong
4#
5version=1.0
6script=${0##*/}
7
8
9if [ -z $JPP_DIR ]; then
10 echo "Variable JPP_DIR undefined."
11 exit
12fi
13
14source $JPP_DIR/setenv.sh $JPP_DIR
15
16set_variable DEBUG 1
17set_variable WORKDIR ./
18
19if do_usage $*; then
20 usage "$script (input file)+"
21fi
22
23if (( $# < 1 )); then
24 fatal "Invalid number of arguments."
25fi
26
27JCookie.sh
28
29set_array INPUT_FILES $argv[1,-1]
30
31for INPUT_FILE in $INPUT_FILES[*]; do
32 JCheckTriggerParameters -f $INPUT_FILE
33done