source: other-projects/is-sheet-music-encore/trunk/java-gen-corpus/download_metadata_temp.sh@ 33437

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

made progress with morphology. Need to have a better area dimension threshold setup

  • Property svn:executable set to *
File size: 376 bytes
Line 
1#!/bin/bash
2
3if [ $# != 1 ] ; then
4 echo "Usage: ./download_metadata_temp.sh doc_id" 1>&2
5 exit 1
6fi
7
8doc_id=$1
9
10output_file="metadata_temp.xml"
11output_cmp_file="compact_metadata_temp.xml"
12echo "Retrieving metadata: $doc_id -> $output_file"
13echo "$"
14#sleep 2
15
16../dapiclient2-extended-META.pl "$doc_id" > "$output_cmp_file"
17xmllint --format $output_cmp_file > $output_file
18
Note: See TracBrowser for help on using the repository browser.