#!/bin/sh

if [ $# -lt 1 ]; then
  echo "USAGE: $( basename $0 ) <GSM-file>" 1>&2
  exit 1
fi

gsm2wav -s1f "$1" | play -t .wav /dev/stdin
