From 8bd97e2a7944c98b1c19c7ebf0f6df6e72561e88 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Wed, 23 Oct 2013 13:18:46 -0400 Subject: version: New command. --- (limited to 'lib/cmd') diff --git a/lib/cmd/local.mk b/lib/cmd/local.mk index fb2cbdb..a7cd46b 100644 --- a/lib/cmd/local.mk +++ b/lib/cmd/local.mk @@ -1,2 +1,3 @@ pkgdatacmd_sources = \ - lib/cmd/help.sh + lib/cmd/help.sh \ + lib/cmd/version.sh diff --git a/lib/cmd/version.sh b/lib/cmd/version.sh new file mode 100644 index 0000000..c8ce5c1 --- /dev/null +++ b/lib/cmd/version.sh @@ -0,0 +1,26 @@ +# ProteanOS Development Kit +# lib/cmd/version.sh +# "version" command +# +# Copyright (C) 2013 Patrick "P. J." McDermott +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +cmd_version_main() +{ + printf '%s %s\n' "${PACKAGE_NAME}" "${PACKAGE_VERSION}" + + printf "$(get_msg 'cmd_version_copyright')\n" \ + '2013' 'Patrick "P. J." McDermott' +} -- cgit v0.9.1