1#!/bin/sh 2set -e 3 4model=opus_data-$1.tar.gz 5 6if [ ! -f $model ]; then 7 echo "Downloading latest model" 8 wget https://media.xiph.org/opus/models/$model 9fi 10tar xvomf $model 11