Created
March 14, 2015 11:59
-
-
Save r9y9/43f86dde839eead1b473 to your computer and use it in GitHub Desktop.
Download HTS demo version 2.3 beta
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
# requirement: curl | |
base=http://hts.sp.nitech.ac.jp/archives/2.3beta/ | |
for name in \ | |
HTS-demo_NIT-ATR503-M001.tar.bz2 \ | |
HTS-demo_CMU-ARCTIC-ADAPT.tar.bz2 \ | |
HTS-demo_NIT-ATR503-M001.tar.bz2 \ | |
HTS-demo_NIT-BP613-F001.tar.bz2 \ | |
HTS-demo_NIT-SONG060-F001.tar.bz2 | |
do | |
url=$base$name | |
echo "Downloading from $url..." | |
curl -L -o $name $url | |
echo "Download finished." | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment