source: gs3-installations/whakatohea-dl/trunk/sites/wmtb/bin/script/metamaster-download.sh@ 37416

Last change on this file since 37416 was 37416, checked in by davidb, 14 months ago

Commandline scripts designed to work with UnknownConverterPlugin

  • Property svn:executable set to *
File size: 970 bytes
Line 
1#!/bin/bash
2
3
4if [ $# != 2 ] ; then
5 echo "" >&2
6 echo "Usage: " >&2
7 echo " $0 [Document|Video|Audio|Image|Taonga] output.xlsx" >&2
8 echo "" >&2
9 exit 1
10fi
11
12sheetname=$1
13xlsx_ofilename=$2
14
15
16if [ $sheetname == "Document" ] ; then
17 gid_sheet="gid=713062664"
18
19elif [ $sheetname == "Video" ] ; then
20 gid_sheet="gid=159511700"
21
22elif [ $sheetname == "Audio" ] ; then
23 gid_sheet="gid=5073585"
24
25elif [ $sheetname == "Image" ] ; then
26 gid_sheet="gid=1320712770"
27
28elif [ $sheetname == "Taonga" ] ; then
29 gid_sheet="gid=1987724711"
30else
31 echo "" >&2
32 echo "Unrecognized metadata-master sheet name: $sheetname" >&2
33 echo "" >&2
34 echo "Usage: " >&2
35 echo " $0 [Document|Video|Audio|Image|Taonga] output.xlsx" >&2
36 echo "" >&2
37 exit 1
38fi
39
40wget --no-check-certificate \
41 -O $xlsx_ofilename \
42 "https://docs.google.com/spreadsheets/d/1j6_xry6OfLrdBkXeYZA8NTLCZwf-jr5DHlpGwAONLyY/export?$gid_sheet&format=xlsx"
43
44
45
46
47
48
Note: See TracBrowser for help on using the repository browser.