299792458ms to linuxmemes@lemmy.world · 23 hours agoTinkering Bugimagemessage-square21fedilinkarrow-up1317arrow-down11file-text
arrow-up1316arrow-down1imageTinkering Bug299792458ms to linuxmemes@lemmy.world · 23 hours agomessage-square21fedilinkfile-text
minus-squareNegativeLookBehind@lemmy.worldlinkfedilinkEnglisharrow-up21·edit-27 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-up10·21 hours agoWell that just got added to my interview question bank…heh.
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.