setup.sh 236 B

1234567891011
  1. #!/bin/bash
  2. ${NIMROD_HOME}/bin/nim c -d:release --path:$JESTER_PATH hello.nim
  3. ${NGINX_HOME}/sbin/nginx -c $TROOT/config/nginx.conf
  4. current=9000
  5. end=9008
  6. while [ $current -lt $end ]; do
  7. ./hello $current &
  8. let current=current+1
  9. done