299792458ms@lemmy.zip to linuxmemes@lemmy.world · 2 days agoTinkering Buglemmy.zipimagemessage-square22fedilinkarrow-up1335arrow-down12file-text
arrow-up1333arrow-down1imageTinkering Buglemmy.zip299792458ms@lemmy.zip to linuxmemes@lemmy.world · 2 days agomessage-square22fedilinkfile-text
minus-squareNegativeLookBehind@lemmy.worldlinkfedilinkEnglisharrow-up49·2 days agoRun random commands until you break some shit Follow me for more Linux tips
minus-squareNegativeLookBehind@lemmy.worldlinkfedilinkEnglisharrow-up25·edit-224 hours agoWrite 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!
minus-squareMajorHavoc@programming.devlinkfedilinkarrow-up11·2 days agoWell that just got added to my interview question bank…heh.
Run random commands until you break some shit
Follow me for more Linux tips
sudo rm -rf /
Write 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!
hi satan
Bonjour
Well that just got added to my interview question bank…heh.
seems reasonable enough