Currently, I'm doing this: ```js //clear.js console.log('\x1Bc'); ``` ```js //index.js console.log('something something'); ``` ```json //package.json "scripts": { "run": "nodemon -q -x \"node clear && node index\"" } ``` I want to clean the console everytime nodemon restarts the process