Changeset e83b2d7
- Timestamp:
- Oct 2, 2010, 10:42:45 PM (14 years ago)
- Branches:
- master, debian, mac, no-cups
- Children:
- 618236b, 1c3f290
- Parents:
- 43ddb7a
- git-author:
- Jessica B. Hamrick <jhamrick@…> (10/02/10 22:42:45)
- git-committer:
- Jessica B. Hamrick <jhamrick@…> (10/02/10 22:42:45)
- Location:
- client/bin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
client/bin/gbq.1
r7cdd65d re83b2d7 1 .TH gbq 1 " 27 June2010"1 .TH gbq 1 "02 October 2010" 2 2 .SH NAME 3 3 gbq \- displays a remote Gutenbach queue … … 9 9 the current jobs, along with ID numbers, owners, and filenames. The 10 10 Gutenbach queue must have previously been added with 11 .B gutenbach-client-config 12 so that gbq knows which host to use. If no queue is specified, 13 .B gbq 14 will try to use the default queue, if one is configured. 11 \fBgutenbach-client-config\fR so that gbq knows which host to use. If 12 no queue is specified, \fBgbq\fR will try to use the default queue, if 13 one is configured. 14 .TP 15 \fB\-q\fR, \fB\-\-queue\fR 16 Specify a queue other than the default 17 .TP 18 \fB\-h\fR, \fB\-\-help\fR 19 Print the help message 15 20 .SH SEE ALSO 16 21 gbr(1), gbrm(1), gutenbach-client-config(1) -
client/bin/gbr.1
r7cdd65d re83b2d7 1 .TH gbr 1 " 27 June2010"1 .TH gbr 1 "02 October 2010" 2 2 .SH NAME 3 3 gbr \- sends a file to a Gutenbach queue 4 4 .SH SYNOPSIS 5 5 .B gbr 6 [ -q \fIQUEUE\fR] \fIFILES\fR6 [options] [-q \fIQUEUE\fR] \fIFILES\fR 7 7 .SH DESCRIPTION 8 8 Prints files to a Gutenbach queue, given the queue name and the path 9 to the files. gbr correctly handles pathname expansion, so (for 10 example), if you wish to play all .mp3 files in a directory, the 11 command `gbr $queue *.mp3` will send each .mp3 as a separate job. The 12 path may also be a URL to a 13 .B YouTube 14 video (e.g. http://www.youtube.com/watch?v=foo). The Gutenbach queue 15 must have previously been added with 16 .B gutenbach-client-config 17 so that gbr knows which host to use. If no queue is specified, 18 .B gbr 19 will try to use the default queue, if one is configured. 9 to the files. If no queue is specified with the \fB\-q\fR option, 10 then the default queue will be used (which should be specified with 11 \fBgutenbach-client-config\fR). gbr correctly handles pathname 12 expansion, so (for example), if you wish to play all .mp3 files in a 13 directory, the command `gbr $queue *.mp3` will send each .mp3 as a 14 separate job. The path may also be a URL to a \fBYouTube\fR video 15 (e.g. http://www.youtube.com/watch?v=foo). The Gutenbach queue must 16 have previously been added with gutenbach-client-config so that gbr 17 knows which host to use. If no queue is specified, gbr will try to 18 use the default queue, if one is configured. 19 .TP 20 \fB\-q\fR, \fB\-\-queue\fR 21 Specify a queue other than the default 22 .TP 23 \fB\-d\fR, \fB\-\-dryrun\fR 24 Just list what would be done 25 .TP 26 \fB\-s\fR, \fB\-\-shuffle\fR 27 Randomize the order that the songs are queued in 28 .TP 29 \fB\-r\fR, \fB\-\-recursive\fR 30 Recursively find files if a directory is passed in 31 .TP 32 \fB\-n\fR, \fB\-\-number\fR \fINUMBER\fR 33 Only print NUMBER files, if more than NUMBER are given (this will 34 print the first NUMBER files if -s is not given) 35 .TP 36 \fB\-h\fR, \fB\-\-help\fR 37 Print the help message 20 38 .SH SEE ALSO 21 39 gbq(1), gbrm(1), gutenbach-client-config(1) -
client/bin/gbrm.1
r7cdd65d re83b2d7 1 .TH gbrm 1 " 27 June2010"1 .TH gbrm 1 "02 October 2010" 2 2 .SH NAME 3 3 gbrm \- removes jobs from a Gutenbach queue … … 7 7 .SH DESCRIPTION 8 8 Removes a single job from a Gutenbach queue, given the job id, which 9 can be obtained with the 10 .B gbq 11 command. If 12 .B all 13 is used in place of an id, then all jobs are removed from the queue. If 14 .B current 15 is used in place of an id, then the current (top) job is removed from 16 the queue. If 17 .B last 18 is used in place of an id, then the last job is removed from the 19 queue. The queue must have previously been added with 20 .B gutenbach-client-config 21 so that gbrm knows which host to use. If no queue is specified, 22 .B gbr 23 will try to use the default queue, if one is configured. 9 can be obtained with the \fBgbq\fR command. If no queue is specified 10 with the \fB\-q\fR option, then the default queue will be used (which 11 should be specified with \fBgutenbach-client-config\fR). If \fBall\fR 12 is used in place of an id, then all jobs are removed from the queue. 13 If \fBcurrent\fR is used in place of an id, then the current (top) job 14 is removed from the queue. If \fBlast\fR is used in place of an id, 15 then the last job is removed from the queue. The queue must have 16 previously been added with gutenbach-client-config so that gbrm knows 17 which host to use. 18 .TP 19 \fB\-q\fR, \fB\-\-queue\fR 20 Specify a queue other than the default 21 .TP 22 \fB\-h\fR, \fB\-\-help\fR 23 Print the help message 24 24 .SH SEE ALSO 25 25 gbr(1), gbq(1), gutenbach-client-config(1) -
client/bin/gutenbach-client-config.1
r7cdd65d re83b2d7 1 .TH gutenbach-client-config 1 " 27 June2010"1 .TH gutenbach-client-config 1 "02 October 2010" 2 2 .SH NAME 3 3 gutenbach-client-config \- displays a remote Gutenbach queue 4 4 .SH SYNOPSIS 5 5 .B gutenbach-client-config 6 [ -l|--list|-a|--add|-d|--delete|-s|--set-default] [\fIQUEUE\fR] [--host \fIHOST\fR]6 [options] 7 7 .SH DESCRIPTION 8 8 Provides options to add, remove, or list remote Gutenbach queues. The … … 25 25 \fB\-a\fR, \fB\-\-add\fR QUEUE 26 26 Add a remote queue. Must be used in conjunction with 27 .B --host27 .B \fB\-\-host\fR 28 28 .TP 29 \fB\-d\fR, \fB\-\-delete\fR QUEUE 30 Delete a remote queue. Must be used in conjunction with 31 .B --host 32 . 29 \fB\-d\fR, \fB\-\-delete\fR QUEUE Delete a remote queue. 30 .TP 31 \fB\-s\fR, \fB\-\-set\-default\fR QUEUE 32 Set the default queue 33 33 .TP 34 34 \fB\-h\fR, \fB\-\-host\fR HOST 35 35 Hostname for the queue 36 36 .TP 37 \fB\- s\fR, \fB\-\-set\-default\fR QUEUE38 Set the default queue37 \fB\-H\fR, \fB\-\-help\fR 38 Print a help message 39 39 .SH SEE ALSO 40 40 gbr(1), gbrm(1), gbq(1)
Note: See TracChangeset
for help on using the changeset viewer.