source: other-projects/is-sheet-music-encore/trunk/COMPX520-RUN-PNG.sh@ 33141

Last change on this file since 33141 was 33044, checked in by cpb16, 5 years ago

Streamlined numpages checking and random selection. Corrected COMPX-RUN-X.sh to download all files (naming error). NEXT: Clean up corpus generation and move on to the next phase

  • Property svn:executable set to *
File size: 384 bytes
Line 
1#!/bin/bash
2
3if [ $# != 2 ] ; then
4 echo "Usage: ./COMPX520-RUN-PNG.sh doc_id page" 1>&2
5 exit 1
6fi
7
8doc_id=$1
9page_num=$2
10
11doc_id_file=`echo $doc_id | sed 's/:/+/' | sed 's/\//=/g'`
12
13
14output_file="download-images/$doc_id_file-$page_num.png"
15echo "Retrieving doc-id-page: $doc_id-$page_num -> $output_file"
16echo ""
17
18./dapiclient2-extended.pl "$doc_id/$page_num" > "$output_file"
19
20
Note: See TracBrowser for help on using the repository browser.