I'm using MeteorJS.
I'd like to call a bash command from the javascript server side. This seems possible with nodeJS: http://www.dzone.com/snippets/execute-unix-command-nodejs
However, I can't find something similar with meteorJS. I'd like something like that :
if(Meteor.isServer){
...
exec("myCommand");
}