source: other-projects/mars-music-recommender/trunk/amc-music-scrape/RUN.sh@ 30416

Last change on this file since 30416 was 30416, checked in by davidb, 8 years ago

Initial cut at code for scraping music excerpts from AMC site

  • Property svn:executable set to *
File size: 264 bytes
Line 
1#!/bin/bash
2
3cygpath -h 2>&1 >/dev/null
4if [ $? = "0" ] ; then
5 is_cygwin=1
6else
7 is_cygwin=0
8fi
9
10
11if [ $is_cygwin = "1" ] ; then
12 java -cp jars\\jsoup-1.8.3.jar\;bin AMCArtistScrape
13else
14 java -cp jars/jsoup-1.8.3.jar:bin AMCArtistScrape
15fi
16
17
Note: See TracBrowser for help on using the repository browser.