Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

test-speech(1) [opensolaris man page]

test-speech(1)							   User Commands						    test-speech(1)

NAME
test-speech - a test application provided by gnome-speech DESCRIPTION
test-speech is a simple test application provided by gnome-speech. It is used to verify the driver for a speech engine, e.g., freetts-syn- thesis-driver, is funcioning properly, in order to make sure users can activate and interact with the gnome-speech driver successfully. GNOME Speech aims to be a general interface to various text-to-speech engines for the GNOME desktop. It allows the simple speaking of text, as well as control over various speech parameters such as speech pitch, rate, and volume. FILES
The following files are used by this application: /usr/bin/test-speech a test application provided by gnome-speech ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWgnome-a11y-speech | +-----------------------------+-----------------------------+ |Interface stability |Volatile | +-----------------------------+-----------------------------+ SEE ALSO
libgnomespeech(3), attributes(5) NOTES
gnome-speech is written by Marc Mulcahy and Michael Meeks. SunOS 5.11 3 Dec 2006 test-speech(1)

Check Out this Related Man Page

SPEECH-DISPATCHER(1)						   User Commands					      SPEECH-DISPATCHER(1)

NAME
speech-dispatcher - server process managing speech requests in Speech Dispatcher SYNOPSIS
speech-dispatcher [-{d|s}] [-l {1|2|3|4|5}] [-c com_method] [-S socket_path] [-p port] | [-v] | [-h] DESCRIPTION
speech-dispatcher is a server process that is responsible for transforming requests for text-to-speech output into actual speech hearable in the speakers. It arbitrates concurrent speech requests based on message priorities, and abstracts different speech synthesizers. Client programs, like screen readers or navigation software, send speech requests to speech-dispatcher using TCP protocol (with the help of client libraries). speech-dispatcher is usually started automatically by client libraries (i.e. autospawn), so you only need to run it manually if testing/debugging, or when in other explicit need for a special setup. OPTIONS
-d, --run-daemon Run as a daemon -s, --run-single Run as single application -a, --spawn Start only if autospawn is not disabled -l, --log-level Set log level (1..5) -c, --communication-method Communication method to use (unix_socket or inet_socket) -S, --socket-path Socket path to use for 'unix_socket' method (filesystem path or 'default') -p, --port Specify a port number for 'inet_socket' method -P, --pid-file Set path to pid file -C, --config-dir Set path to configuration -v, --version Report version of this program -D, --debug Output debugging information into /tmp/.speech-dispatcher -h, --help Print this info BUGS
Please report bugs to <speechd-bugs@freebsoft.org> SEE ALSO
spd-say(1) The full documentation for speech-dispatcher is maintained as a Texinfo manual. If the info and speech-dispatcher programs are properly installed at your site, the command info speech-dispatcher should give you access to the complete manual. speech-dispatcher 0.7.1 March 2011 SPEECH-DISPATCHER(1)
Man Page

14 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

string test?

hey guys- what is the syntax for a string test to verify that a user has entered a 6 digit numeric? Thanks for your help in advance! Todd (9 Replies)
Discussion started by: hedrict
9 Replies

2. Shell Programming and Scripting

Need to split the file

I have a file that has text in the format below /users/test/krachel/ ! Some text ! Some Text /user/test/limo ! some text ! some text ! Some text /user/test/krachel ! Some text How can I seperate the text between a pair of '/users/test/' into seperate files ??? any information... (11 Replies)
Discussion started by: getdpg
11 Replies

3. Shell Programming and Scripting

how to determine last line in a while do loop

Hey guy, I have a very simple question, I have the following script, while read $test do echo "this is $test" done < /testfile What I want is instead of printing "this is $test" for each line, I want the script to print out "this is last line" for last line, how should I do it? (10 Replies)
Discussion started by: fedora
10 Replies

4. Shell Programming and Scripting

a weird issue with "while" block

I tried to read some lines from a file and append them to a variable via "while" block like below: ############### #!/bin/sh test="ABC_" while read L1 do test=$test$L1 echo $test done < some.txt echo $test ############### But the last line keeps print the initial value,... (7 Replies)
Discussion started by: sleepy_11
7 Replies

5. Solaris

test and .test in same directory

i am using solaris 5.10. i can create two different files "test" and ".test" in the same directory. now suppose i want to change the attribute of the hidden file .test to visible is it possible??? since "." is just an attribute to mark a file hidden why is unix allows creation of "file" and... (14 Replies)
Discussion started by: vikashtulsiyan
14 Replies

6. Shell Programming and Scripting

test: argument expected

+ test.sh: test: argument expected #!/bin/bash if then echo thennnn else echo elseeee fi why does it show this error? Clearly from debug mode, the argument is passed. I also tried if Run on Solaris 9. Thanks (10 Replies)
Discussion started by: lalelle
10 Replies

7. UNIX for Dummies Questions & Answers

Replacing Comma by Tab

Hi All, i have a file test.txt as shown below, 1,test,test111 2,rest,rest222 i want to replace the commas by tab delimiter.., it should be like, 1 test test111 2 rest rest222 i tried the following code, sed 's/,/\\t/g' test.txt >> ouptut.txt (9 Replies)
Discussion started by: Serious Sam
9 Replies

8. Shell Programming and Scripting

Some problem about file test

Hi, I'm writing a part of script to test the files, here is what is looks like: if then do somthing fi This script runs well on HPUX. However, when I test it on Linux(redhat), it only works if there is only one file with name A*.TXT. If there's more than one files with... (8 Replies)
Discussion started by: phantandy
8 Replies

9. Shell Programming and Scripting

string test in IF statement

How do I test multiple words in a string test like below: if ] then print "You entered $TBS name.\n" else print "You entered an incorrect response.\n" fi This test does not work. I have tried different syntax versions. How does this work? And is there a better way to do it? ... (10 Replies)
Discussion started by: djehresmann
10 Replies

10. Shell Programming and Scripting

How to replace pattern

Hello EveryOne, I have a file "test" with following entry. this is test prtestad yes this is test . Above i have colored pr and ad . Actually requirement is to replace all words starts with pr and ends with ad should be replaced by word prahlad . Means after changes... (9 Replies)
Discussion started by: shirsha
9 Replies

11. Shell Programming and Scripting

Script to extract certain lines

Hi I have a text file with the following information: # List 1 (first header) test 1 test 2 test 3 ... # Trials (second header) round 1 run 5 ... and so on I want to create a script, which based on some criterias with return only the list of lines between the header. I... (9 Replies)
Discussion started by: nimo
9 Replies

12. Shell Programming and Scripting

split content and write to new record

Hi, Help required to split record value and write to new row. Input a~b~c~value in ('3','4','5')~test output a~b~c~3~test a~b~c~4~test a~b~c~5~test input a~b~c~value in ('3','4')~test output a~b~c~3~test a~b~c~4~test (8 Replies)
Discussion started by: Jairaj
8 Replies

13. Shell Programming and Scripting

Setuid not working in Linux as script fails to write to file.

Hi, I have the following 3 test files to test setuid bit which if it works I would like to implement in our application. However setuid doesnot seem to be having any impact on my test below.Following are the 3 files of interest in /tmp/ folder. $ ls -ltr *env* -rw------- 1 g332008 users 6... (23 Replies)
Discussion started by: waavman
23 Replies

14. Shell Programming and Scripting

Shell script to solve query

Hi I have data in the below format in two columns in excel which i will copy to notepad. test as rec1, string test as rec2, byteint test as rec3, string update date as test, datetime name as tes2 string I need to add trim function on all the string columns and keep the remaining... (10 Replies)
Discussion started by: pisikar
10 Replies