Release new version 2.13.0
[grml-scripts.git] / usr_bin / soundtest
1 #!/bin/sh
2 # Filename:      soundtest
3 # Purpose:       test sound on your grml system
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2.
7 ################################################################################
8
9 if ! [ "$(command -v speaker-test)" ] ; then
10   echo "Sorry, speaker-test (from alsa-utils) not available.">&2
11   exit 1
12 fi
13
14 exec speaker-test -t wav
15
16 ## END OF FILE #################################################################