]> git.etc.gen.nz Git - mythtv-status.git/commitdiff
Minor tidyup of the order of parameters.
authorAndrew Ruthven <andrew@cerberus.etc.gen.nz>
Fri, 16 Nov 2007 00:09:08 +0000 (13:09 +1300)
committerAndrew Ruthven <andrew@cerberus.etc.gen.nz>
Fri, 16 Nov 2007 00:09:08 +0000 (13:09 +1300)
bin/mythtv-status

index 2c2f88cf84ba65d022315136476edb1f65c3ed53..0c5864ddd1db2c93a0f6fe64fbe43b7f7240265c 100755 (executable)
@@ -21,10 +21,10 @@ my $description = undef;
 my $episode = undef;
 
 GetOptions(
-  'h|host=s' => \$host,
-  'p|port=s' => \$port,
-  'e|episode' => \$episode,
-  'd|descripton' => \$description
+  'd|descripton' => \$description,
+  'e|episode'    => \$episode,
+  'h|host=s'     => \$host,
+  'p|port=s'     => \$port,
 );
 
 die "Sorry, port isn't a number.\n"
@@ -165,21 +165,21 @@ about to be recorded.
 
 =over
 
-=item B<-h HOST, --host=HOST>
-
-The host to check, defaults to localhost.
-
-=item B<-p PORT, --port=PORT>
+=item B<-d, --description>
 
-The port to use when connecting to MythTV, defaults to 6544.
+Display the description for the scheduled recordings.
 
 =item B<-e, --episode>
 
 Display the episode (subtitle) for the scheduled recordings.
 
-=item B<-d, --description>
+=item B<-h HOST, --host=HOST>
 
-Display the description for the scheduled recordings.
+The host to check, defaults to localhost.
+
+=item B<-p PORT, --port=PORT>
+
+The port to use when connecting to MythTV, defaults to 6544.
 
 =back