View Single Post
Old 03-03-2008, 06:22 AM   #393
Ortep
Fanatic
Ortep has a complete set of Star Wars action figures.Ortep has a complete set of Star Wars action figures.Ortep has a complete set of Star Wars action figures.Ortep has a complete set of Star Wars action figures.Ortep has a complete set of Star Wars action figures.
 
Posts: 527
Karma: 470
Join Date: Sep 2007
Location: The Netherlands
Device: Kindle Oasis
Quote:
Originally Posted by Gudy View Post
Yes, please! Needing to look at the Perl source code to learn about the possible parameters sucks,
The code is easy, something like:

Code:
# Get parameters

$bookname=shift @ARGV;
$param1=shift @ARGV;
$param2=shift @ARGV;


# When not enough parameters, generate user help

unless ( $bookname ) {
    die
    "\nProgram to extract html from mobifile\n
    Version xxx.yyy.zzz
    Author: Me
    Usage: Mobi2html bookname --parameter1 --parameter2 --etc\n";
}
Ortep is offline   Reply With Quote