Changeset 39
- Timestamp:
- 07/25/06 11:10:51 (2 years ago)
- Files:
-
- 10kz/README (modified) (1 prop)
- 10kz/start.sh (modified) (2 diffs, 1 prop)
- 10kz/stop.sh (modified) (1 prop)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
10kz/README
- Property svn:keywords set to Id
10kz/start.sh
- Property svn:keywords set to Id
r20 r39 1 1 #!/bin/sh 2 # local webserver startup script 3 # $Id$ 4 5 root=/Applications/10kz 2 6 3 7 process=`ps aux | grep [m]ini | awk '{print $2}'` … … 10 14 fi 11 15 12 /Applications/10kz/webserver/mini_httpd/mini_httpd -p 6667 -d /Applications/10kz/shell/ -c \*.jm3 16 if [ -d $root ] 17 then 18 $root/webserver/mini_httpd/mini_httpd -p 6667 -d $root/shell/ -c \*.jm3 19 sleep 1 20 lynx --dump http://localhost:6667/test-cgi.jm3 13 21 14 sleep 1 15 lynx --dump http://localhost:6667/test-cgi.jm3 22 echo done. 23 exit 0 16 24 17 echo done. 18 exit 0 25 else 26 echo "Failed; the directory where i expected to find the server ($root) doesn't exist." 27 exit 1 28 fi 29 10kz/stop.sh
- Property svn:keywords set to Id