forked from idigbio-aocr/LabelExtraction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
submit-dir.sh
executable file
·61 lines (54 loc) · 1.06 KB
/
submit-dir.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env bash
usage()
{
cat << EOF
usage: $0 options
This script run the test1 or test2 over a machine.
OPTIONS:
-h Show this message
-d Directory of Files (Filenames must be <UUID>.type or <NAME>.type)
-n Your Name
-s A name for your software
-t Submission Type (one of: ocr, silver-parse, gold-parse)
EOF
}
DIR=
NAME=
SOFTWARE=
TYPE=
ID=
while getopts “hd:n:s:t:” OPTION
do
case $OPTION in
h)
usage
exit 1
;;
d)
DIR=$OPTARG
;;
n)
NAME=$OPTARG
;;
s)
SOFTWARE=$OPTARG
;;
t)
TYPE=$OPTARG
;;
?)
usage
exit
;;
esac
done
if [[ -z $DIR ]] || [[ -z $NAME ]] || [[ -z $SOFTWARE ]] || [[ -z $TYPE ]]
then
usage
exit 1
fi
for f in `ls $DIR`; do
echo "Submitting File $f"
./submit-file.sh -n "$NAME" -s "$SOFTWARE" -t "$TYPE" -f "$DIR/$f"
echo
done