From: Gareth S B. <bes...@us...> - 2005-05-09 16:44:51
|
Update of /cvsroot/sblim/sfcb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21711 Modified Files: wbemcat Log Message: http://sourceforge.net/tracker/index.php?func=detail&aid=1193589&group_id=128809&atid=712784 Index: wbemcat =================================================================== RCS file: /cvsroot/sblim/sfcb/wbemcat,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- wbemcat 25 Apr 2005 23:19:34 -0000 1.1 +++ wbemcat 9 May 2005 16:44:43 -0000 1.2 @@ -36,14 +36,14 @@ print "\nOptions:\n"; print " -h, --host=HOSTNAME\tName of host running the CIMOM. Default=$host\n"; print " -p, --port=PORT\tPort that the CIMOM is listening on. Default=$port\n"; - print "\t-?, --help\tDisplay this help and exit\n"; + print " -?, --help\t\tDisplay this help and exit\n"; die "\n"; } # Process command line options, if any GetOptions("host|h=s" => \$host, "port|p=i" => \$port, - "help|?" => sub{usage}) || usage; + "help|?" => usage) || usage; my $file = @ARGV[0]; # Read all the XML data from the input file |