You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash |
|
|
|
export PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin |
|
|
|
cd `dirname $0` |
|
if [ ! -d cluster-geo -o ! -f cluster-geo/cluster-geo.js ]; then |
|
echo 'Cannot find ./cluster-geo containing NodeJS script files.' |
|
exit 1 |
|
fi |
|
|
|
cd cluster-geo |
|
|
|
exec node --harmony cluster-geo.js
|
|
|