#!/bin/sh
#
# The script to remove all supported TTS from VoiceMan configuration.
# This script removes all /etc/voiceman.d/*.output symlinks.
# Copyright (c) 2000-2010 Michael Pozhidaev <msp@altlinux.org>

find /etc/voiceman.d/ -type l -name '*.output' -exec /bin/rm -f '{}' \;

