repo.or.cz
/
csql.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
*** empty log message ***
[csql.git]
/
test
/
tools
/
csql
/
test000.ksh
blob
b473fa304fcc54ac510a754106d43ab05568a4ec
1
#!/bin/ksh
2
# Test Case For Testing 'HELP' Command
3
#
4
QUITFILE
=
${PWD}
/
tools
/
csql
/
quit.sql
5
REL_PATH
=
.
6
if
[
-s
"
$QUITFILE
"
]
7
then
8
REL_PATH
=
`pwd`
/
tools
/
csql
9
fi
10
echo
"CSQL> HELP;"
11
$CSQL_INSTALL_ROOT
/
bin
/
csql
-s
${REL_PATH}
/
help
.sql
12
if
[
$?
-ne
0
]
13
then
14
exit
1
;
15
fi
16
exit
0
;