X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fversion.pl;h=7107570d969c0e5108b57bb48508b89c81285351;hb=537a4a109f291c206d754ec2067d49f9964cca08;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hpb=6b6a8002929017b6d4217f68fa492a2d728ee1fe;p=spider.git diff --git a/cmd/show/version.pl b/cmd/show/version.pl index e69de29b..7107570d 100644 --- a/cmd/show/version.pl +++ b/cmd/show/version.pl @@ -0,0 +1,15 @@ +# +# show the version number of the software + copyright info +# +# Copyright (c) 1998 Dirk Koopman G1TLH +# +# +# + +my @out; +my ($year) = (gmtime($main::systime))[5]; +$year += 1900; +push @out, "DX Spider Cluster version $main::version (build $main::subversion.$main::build git: $main::gitversion) on \u$^O"; +push @out, "Copyright (c) 1998-$year Dirk Koopman G1TLH"; + +return (1, @out);