summaryrefslogtreecommitdiffstats
path: root/lib/cmd
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-10-23 13:18:46 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-10-23 13:18:46 (EDT)
commit8bd97e2a7944c98b1c19c7ebf0f6df6e72561e88 (patch)
treecf8d7c8f7e20e007bcc2e1b849a31127a54a65ac /lib/cmd
parentc5e8d0a37ba7d3b66e123d0105faa040cf4fe11b (diff)
version: New command.
Diffstat (limited to 'lib/cmd')
-rw-r--r--lib/cmd/local.mk3
-rw-r--r--lib/cmd/version.sh26
2 files changed, 28 insertions, 1 deletions
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 <http://www.gnu.org/licenses/>.
+
+cmd_version_main()
+{
+ printf '%s %s\n' "${PACKAGE_NAME}" "${PACKAGE_VERSION}"
+
+ printf "$(get_msg 'cmd_version_copyright')\n" \
+ '2013' 'Patrick "P. J." McDermott'
+}