diff options
author | Paul Davis <paul@linuxaudiosystems.com> | 2013-10-01 16:35:58 -0400 |
---|---|---|
committer | Paul Davis <paul@linuxaudiosystems.com> | 2013-10-01 16:35:58 -0400 |
commit | c2062bc8d71c16e140f8b4b4e95be7fb2b41270f (patch) | |
tree | f028c43ef07e10f3f8e48ecaa78cbadd3e22ef36 /man | |
parent | 39af3ad8b058d03d278d3b594934cb54d14a7c7c (diff) | |
download | jack1-c2062bc8d71c16e140f8b4b4e95be7fb2b41270f.tar.gz |
add new man page for jack_property(1)
Diffstat (limited to 'man')
-rw-r--r-- | man/jack_property.0 | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/man/jack_property.0 b/man/jack_property.0 new file mode 100644 index 0000000..5f045b5 --- /dev/null +++ b/man/jack_property.0 @@ -0,0 +1,64 @@ +.TH JACK_PROPERTY "1" "!DATE!" "!VERSION!" +.SH NAME +jack_property \- JACK client to list, set and delete metadata information +.SH SYNOPSIS +\fBjack_property\fR -l +.br +\fBjack_property\fR [ -c | -p ] -l \fIidentifier\fR +.br +\fBjack_property\fR [ -c | -p ] -l \fIidentifier\fR \fIkey\fR +.br +\fBjack_property\fR [ -c | -p ] -s \fIidentifier\fR \fIkey\fR \fIvalue\fR [ \fItype\fR] +.br +\fBjack_property\fR [ -c | -p ] -d \fIidentifier\fR +.br +\fBjack_property\fR [ -c | -p ] -d \fIidentifier\fR \fIkey\fR +.br +\fBjack_property\fR -D +.SH DESCRIPTION +\fBjack_property\fR can be used to list, set and delete any and all metadata associated with the ports +and clients of a JACK server. +.P +There are three many ways to use the command. The \fB-l\fR option is used to list existing metadata. The \fB-s\fR option is used +to set metadata. The \fB-d/-D\fR options are used to delete metadata. +.P +The \fIidentifier\fR is normally a UUID (UUIDs for ports and clients can be shown with jack_lsp(1)). If the \fB-c\fR option is used, then \fIidentifier\fR will +be interpreted as a client name, and its UUID will be looked up internally and used for the relevant metadata operation. If the \fB-p\fR option is used, then \fIidentifier\fR will +be interpreted as a port name and its UUID will be looked up internally and used for the relevant metadata operation. +.P +The \fIkey\fR is an arbitary string that identifies the metadata to be operated upon. +.P +The \fIvalue\fR is an arbitrary string that defines the value of the metadata to be created. +.P +The \fItype\fR is an optional MIME type, given as a string. An empty type for a piece of metadata results in it being interpreted as "text/UTF-8". +.SH OPTIONS +.TP 6 +-l +list all metadata currently defined +.TP +-l identifier +list all metadata currently defined for \fIidentifier\fR +.TP +-l identifier key +show the value of the metadata associated with key for \fIidentifier\fR +.TP +-d identifier +deletes all metadata for \fIidentifier\fR +.TP +-d identifier key +deletes the metadata associated with \fIkey\fR for \fIidentifier\fR +.TP +-D +delete all currently defined metadata +.TP +-s identifier key value [ type ] +sets the metadata associated with \fIkey\fR to \fIvalue\fR for \fIidentifer\fR, with its type set to \fItype\fR if given +.TP +-c +interpret a given identifier as a client name rather than a UUID +.TP +-p +interpret a given identifier as a port name rather than a UUID + + + |