Rdpjsbash / run.js
Jdjdhdhhd837373773's picture
Create run.js
f7cdd9f verified
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');