blob: 38732a0d306aac97b2214eb5f8b70e2f2db29882 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- ./modules/miscutil/bin/dbexec.wml.orig Wed Mar 10 17:38:29 2004
+++ ./modules/miscutil/bin/dbexec.wml Wed Jun 30 22:57:09 2004
@@ -36,7 +36,7 @@
###### okay, config file read, the script can continue ######
# is help called?
-if [ "$1" == "-h" ] || [ "$1" == "--help" ]; then
+if [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
echo "Usage: $0"
echo "General options:"
echo " -h, --help Print this help."
@@ -45,7 +45,7 @@
fi
# is version called?
-if [ "$1" == "-V" ] || [ "$1" == "--version" ]; then
+if [ "$1" = "-V" ] || [ "$1" = "--version" ]; then
echo "<: print generate_pretty_version_string('$Id: dbexec.wml,v 1.2 2004/03/10 16:38:29 tibor Exp $'); :>"
exit 0
fi
|