From: P. J. McDermott Date: Mon, 23 Sep 2013 00:16:14 +0000 (-0400) Subject: Print help and version information on STDOUT. X-Git-Tag: ssic/1.0.0~25 X-Git-Url: https://jxself.org/git/?p=ssic.git;a=commitdiff_plain;h=1d1bd008953e9e9a7fc5dd71698d65b72d24fd37 Print help and version information on STDOUT. --- diff --git a/src/ssic.pl b/src/ssic.pl index 598468c..2f3744e 100755 --- a/src/ssic.pl +++ b/src/ssic.pl @@ -43,11 +43,11 @@ sub main } if (exists($opts{'h'})) { - help(*STDERR); + help(*STDOUT); exit(0); } if (exists($opts{'V'})) { - version(*STDERR); + version(*STDOUT); exit(0); }