Advertisement
Guest User

Untitled

a guest
May 24th, 2022
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. WARNING: this code can cause Thunar to freeze or crash!
  2.  
  3. #!/bin/bash
  4. while true
  5. do
  6. for ((x=1; x<=50; x++)) # maybe use bigger number
  7. do
  8. mktemp --suffix="unique-suffix" > /dev/null
  9. done
  10. # comment the sleep out to freeze/crash thunar
  11. sleep 1
  12. rm /tmp/*unique-suffix
  13. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement