Advertisement
unknown437

Auto Shutdown

Oct 21st, 2024
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.12 KB | Cybersecurity | 0 0
  1. #!/bin/bash
  2.  
  3. DELAY=$((RANDOM % 120 + 180))
  4. echo "System will shut down in $DELAY seconds..."
  5. sleep $DELAY
  6. shutdown now
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement