termux-api.c: rand() -> arc4random()
[termux-packages] / packages / termux-api / termux-tts-engines
CommitLineData
cc1ae02e 1#!/bin/sh
9043ae1c
FF
2set -e -u
3
4SCRIPTNAME=termux-tts-engines
5show_usage () {
6 echo "Usage: $SCRIPTNAME"
7 echo "Get information about the available text-to-speech (TTS) engines."
8 echo ""
9 echo "The name of an engine may be given to the termux-tts-speak command using the -e option."
10 exit 0
11}
12
13while getopts :h option
14do
15 case "$option" in
16 h) show_usage;;
17 ?) echo "$SCRIPTNAME: illegal option -$OPTARG"; exit 1;
18 esac
19done
20shift $(($OPTIND-1))
21
22if [ $# != 0 ]; then echo "$SCRIPTNAME: too many arguments"; exit 1; fi
59f0d218 23
cc1ae02e 24@TERMUX_API@ TextToSpeech --es engine LIST_AVAILABLE