aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xservice6
1 files changed, 3 insertions, 3 deletions
diff --git a/service b/service
index d65d3ff7..2f913784 100755
--- a/service
+++ b/service
@@ -10,7 +10,7 @@ SERVICEDIR="/etc/init.d"
OPTIONS=
if [ $# -eq 0 ]; then
- echo $"${USAGE}" >&2
+ echo "${USAGE}" >&2
exit 1
fi
@@ -18,11 +18,11 @@ cd /
while [ $# -gt 0 ]; do
case "${1}" in
--help | -h | --h* )
- echo $"${USAGE}" >&2
+ echo "${USAGE}" >&2
exit 0
;;
--version | -V )
- echo $"${VERSION}" >&2
+ echo "${VERSION}" >&2
exit 0
;;
*)