Lee Duna@lemmy.nz to Technology@lemmy.worldEnglish · 20 hours agoMicrosoft BitLocker-protected drives can now be opened with just some files on a USB stick — YellowKey zero-day exploit demonstrates an apparent backdoorwww.tomshardware.comexternal-linkmessage-square99fedilinkarrow-up1718arrow-down11file-text
arrow-up1717arrow-down1external-linkMicrosoft BitLocker-protected drives can now be opened with just some files on a USB stick — YellowKey zero-day exploit demonstrates an apparent backdoorwww.tomshardware.comLee Duna@lemmy.nz to Technology@lemmy.worldEnglish · 20 hours agomessage-square99fedilinkfile-text
minus-squareAlberat@lemmy.worldlinkfedilinkEnglisharrow-up20arrow-down1·edit-212 hours agoi just deleted a month of notes by doing: find $(pwd) “*.tmp” -delete instead of: find $(pwd) -iname “*.tmp” -delete turns out the former throws an error on “*.tmp” but still deletes everything lol… PSA for everyone
minus-squarepool_spray_098@lemmy.worldlinkfedilinkEnglisharrow-up1·2 hours agoDamn! That’s a brutal one. Someone should maybe change that behavior.
i just deleted a month of notes by doing:
find $(pwd) “*.tmp” -delete
instead of:
find $(pwd) -iname “*.tmp” -delete
turns out the former throws an error on “*.tmp” but still deletes everything lol… PSA for everyone
Damn! That’s a brutal one. Someone should maybe change that behavior.