#!/bin/sh
# Filename:      soundtest
# Purpose:       test sound on your grml system
# Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
# Bug-Reports:   see http://grml.org/bugs/
# License:       This file is licensed under the GPL v2.
################################################################################

if ! [ "$(command -v speaker-test)" ] ; then
  echo "Sorry, speaker-test (from alsa-utils) not available.">&2
  exit 1
fi

exec speaker-test -t wav

## END OF FILE #################################################################
