wizard install Loads interactive autoinstaller. Users generally should use this. wizard install --help Help message, very basic, indicates: - How to run the interactive installer - How to specify an installation directory - How to specify a specific application - How to specify a specific version - How to get help for that application wizard install mediawiki Installs MediaWiki application. Interactively asks for install location and configuration. wizard install mediawiki --help Help message for that application. Show the configure message. This is tricky, since just bouncing back wizard configure --help will result in the wrong program name. Choices: X Tell the user the appropriate command to get the correct help choice. Poor because it makes them jump through an extra hoop, however, once they have it makes "more sense" This is the approach we'll take for now, before we make ArgHandler work. * Manually search replace the output of the configure command. Hacky. * Rewrite optparse to have a more robust %app substitution, which includes being able to override it. Ehh... X Manual help generation out of ArgHandler. Not bad, but requires code to be written. This is the correct solution, and should eventually be implemented.