aboutsummaryrefslogtreecommitdiff
path: root/bin/app-conf
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2013-02-01 12:46:56 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2013-02-01 12:46:56 +0100
commit0bad1dc709ee21f3e93cfa0866fc0478a5e884a0 (patch)
tree2acd309f689c0afe9a03c823493443752d4b6960 /bin/app-conf
parent97036aeae73cc2a63219c7b792ab5f18c7d98cd1 (diff)
downloadapp.sh-0bad1dc709ee21f3e93cfa0866fc0478a5e884a0.tar.gz
app.sh-0bad1dc709ee21f3e93cfa0866fc0478a5e884a0.tar.bz2
app.sh-0bad1dc709ee21f3e93cfa0866fc0478a5e884a0.tar.xz
app.sh-0bad1dc709ee21f3e93cfa0866fc0478a5e884a0.zip
o Consistent usage() usage/flow.
Diffstat (limited to 'bin/app-conf')
-rwxr-xr-xbin/app-conf21
1 files changed, 8 insertions, 13 deletions
diff --git a/bin/app-conf b/bin/app-conf
index 3cf0383..2681f59 100755
--- a/bin/app-conf
+++ b/bin/app-conf
@@ -69,20 +69,15 @@ conf_import() {
mv "$dst.tmp" "$dst"
}
-usage() {
- if [ $# -gt 0 ]
- then
- echo "Error: $@" >&2
- fi
-
- echo "usage: $0 conf <command>" >&2
+usage_text() {
+ echo "usage: $0 conf <command>"
echo ""
- echo "Available commands:" >&2
- echo " get [name] - returns a single value" >&2
- echo " list - list all config values" >&2
- echo " set [name] [value] - set a config parameter" >&2
- echo " delete [name] - deletes a config parameter" >&2
- echo " import [file] - import a file" >&2
+ echo "Available commands:"
+ echo " get [name] - returns a single value"
+ echo " list - list all config values"
+ echo " set [name] [value] - set a config parameter"
+ echo " delete [name] - deletes a config parameter"
+ echo " import [file] - import a file"
exit 1
}