You're viewing a single thread.
All Comments
24 comments
Run random commands until you break some shit
Follow me for more Linux tips
56 0 Replysudo rm -rf /
11 0 ReplyWrite a script to delete every 5th file under /etc/.
EDIT: did it for you
#!/bin/bash count=0 for file in $(find /etc/ -type f); do (( count+=1 )) if (( $count % 5 == 0 )); then sudo rm -rf $file fi done
And now you have lots of stuff to fix and configure. You're welcome!
29 0 ReplyWell that just got added to my interview question bank...heh.
13 0 Replyhi satan
3 0 ReplyBonjour
3 0 Reply
seems reasonable enough
3 0 Reply
24 comments
Scroll to top