overrides a system or user command for for all child processes
npm install squish-squash

npm install squish-squash [--save|--save-dev]js
const ss = require('squish-squash');
// example of squashing system or user cmds with arbitrary command
ss({
squash: 'node',
cmdpath: '/path/to/my/other/node/or/Electron'
});// examples of squashing system or user cmds with system commands
// when any process calls
more, less will actually run
ss({
squash: 'more',
syscmd: 'less'
});
// prefer the silver-searcher over grep
ss({
squash: 'grep',
syscmd: 'ag'
});
``