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
windows changes
[csql.git]
/
test
/
phptests
/
test026.ksh
blob
c92c5792a6231a7cd341445b199fa200ab6c9353
1
#!/bin/ksh
2
3
4
CSQL_CONF
=
${PWD}
/
phptests
/
csql.conf
5
REL_PATH
=
.
6
if
[
-s
"
$CSQL_CONF
"
]
7
then
8
REL_PATH
=
${PWD}
/
phptests
9
fi
10
php
$REL_PATH
/
odbcfree.php
11
if
[
$?
-ne
0
]
12
then
13
exit
50
;
14
fi
15
exit
0
;
16
17