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
moving server source files to server folder
[csql.git]
/
test
/
phptests
/
test023.ksh
blob
fb3ffd2c60aec9093dff0ca3a32815e988161415
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
11
php
$REL_PATH
/
paraupdate.php
12
if
[
$?
-ne
0
]
13
then
14
exit
50
;
15
fi
16
exit
0
;
17
18