/[Frey]/trunk/bin/dev.sh
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/bin/dev.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 658 - (show annotations)
Mon Dec 1 22:01:16 2008 UTC (15 years, 4 months ago) by dpavlin
File MIME type: application/x-sh
File size: 491 byte(s)
document starter script if only a bit :-)
1 #!/bin/sh -x
2
3 # This is my homage to Erlang - self restarting perl :-)
4 #
5 # it enabled to use die and confess when needed without
6 # having to worry about development flow
7
8 server=./bin/server-mojo.pl
9
10 pid=`cat var/dev.pid`
11 echo "## $pid"
12 if [ ! -z "$pid" ] ; then
13 echo "# kill $pid"
14 kill $pid
15 killall server-mojo.pl
16 fi
17
18 echo $$ > var/dev.pid
19
20 export FREY_SWITCH_SCREEN=1
21
22 while true ; do
23
24 FREY_NO_LOG=1 perl -c $server || exit
25 FREY_RESTART=1 $server || exit
26 FREY_SWITCH_SCREEN=0
27
28 done
29

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26