When I run the following code in node:
var shell = require('shelljs');
var files = shell.ls('-R', './**/foobar');
console.log('Files found:\n' + files.join('\n'));
I see this in the output:
ls: no such file or directory: ./**/foobar
How can I suppress the stderr, keep it from being shown?