Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. if [ `uname` == "Linux" ];then
  4. node /usr/bin/collector.js 2>&1 >> /var/log/cube/collector.log &
  5. node /usr/bin/evaluator.js 2>&1 >> /var/log/cube/evaluator.log &
  6. fi
  7.  
  8. if [ `uname` == "Darwin" ];then
  9. node /opt/local/lib/node_modules/cube/bin/collector.js 2>&1 >> /opt/local/var/log/cube/collector.log &
  10. node /opt/local/lib/node_modules/cube/bin/evaluator.js 2>&1 >> /opt/local/var/log/cube/evaluator.log &
  11. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement