run_servers.sh
author Shingo W. Kagami
Thu, 21 Jan 2010 22:52:34 +0900
changeset 6 0387681eee81
child 10 a39fafcc0d45
permissions -rw-r--r--
Delete old comments.
Shingo@1
     1
#!/bin/sh
Shingo@1
     2
Shingo@1
     3
echo running cygserver ...
Shingo@1
     4
(/usr/sbin/cygserver.exe &)
Shingo@1
     5
echo running apache ...
Shingo@1
     6
/usr/sbin/apachectl2 start
Shingo@1
     7
Shingo@1
     8
echo running fetchmail ...
Shingo@1
     9
/usr/bin/fetchmail -N
Shingo@1
    10
Shingo@1
    11
exit
Shingo@1
    12