I\'d like to use the execSync method which was added in NodeJS 0.12 but still have the output in the console window from which i ran the Node script.
execSync
E.
You can pass the parent´s stdio to the child process if that´s what you want:
require('child_process').execSync( 'rsync -avAXz --info=progress2 "/src" "/dest"', {stdio: 'inherit'} );