1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
.TH MUMBLE-SERVER-CLI "1" "February 2010" "mumble-server-cli" "User Commands"
.SH NAME
mumble-server-cli \- allows calling methods of mumble-server from the shell
.SH SYNOPSIS
.B mumble-server-cli
[\fIoptions\fR] [\fI<method name>\fR] [\fI<method arguments>\fR]
.SH DESCRIPTION
Each method argument has the form: [<data type: bool|int|float|string>:]value
.PP
If you do not specify a data type, string will be assumed, otherwise
`value' will be converted to the given type first. The bool conversion
interprets each of 'True', 'true', '1', 'Yes', 'yes' as True, everything else
as False.
.IP
Example: int:4 float:3.5 string:oh:hai foobar bool:yes
.SH OPTIONS
.TP
\fB\-h\fR, \fB\-\-help\fR
show this help message and exit
.TP
\fB\-d\fR DJANGO_SETTINGS, \fB\-\-django\-settings\fR=\fIDJANGO_SETTINGS\fR
if specified, get connstring and slice defaults from
the given Django settings module. Default: empty.
.TP
\fB\-c\fR CONNSTRING, \fB\-\-connstring\fR=\fICONNSTRING\fR
connection string to use. Default is 'Meta:tcp \fB\-h\fR
127.0.0.1 \fB\-p\fR 6502'.
.TP
\fB\-s\fR SLICE, \fB\-\-slice\fR=\fISLICE\fR
path to the slice file. Default is
\&'/usr/share/slice/Murmur.ice'.
.TP
\fB\-e\fR ENCODING, \fB\-\-encoding\fR=\fIENCODING\fR
Character set arguments are encoded in. Default: Read
from LANG env variable with fallback to UTF\-8.
.TP
\fB\-v\fR, \fB\-\-verbose\fR
Show verbose messages on stderr
.SH "SEE ALSO"
The full documentation for
.B mumble-server-cli
is maintained as a Texinfo manual. If the
.B info
and
.B mumble-server-cli
programs are properly installed at your site, the command
.IP
.B info mumble-server-cli
.PP
should give you access to the complete manual.
.SH AUTHOR
Mumble\-Django and mumble\-server\-cli have been written by Michael Ziegler
<diese-addy@funzt-halt.net>.
|