f7cdd9f
1
2
3
4
5
6
7
8
9
10
11
12
const { execSync } = require('child_process'); function run(command) { try { execSync(command); } catch { // Silent catch: no logging } } // Run sleep for 6 hours (21600 seconds) run('sleep 21600');