☆ Yσɠƚԋσʂ ☆@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 1 month agoFrog put Claude in a boxlemmy.mlimagemessage-square13linkfedilinkarrow-up1280cross-posted to: programmer_humor@programming.dev
arrow-up1280imageFrog put Claude in a boxlemmy.ml☆ Yσɠƚԋσʂ ☆@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 1 month agomessage-square13linkfedilinkcross-posted to: programmer_humor@programming.dev
minus-squareHiddenLayer555@lemmy.mllinkfedilinkEnglisharrow-up6·edit-21 month ago/* Or the (probably, IDK) more common way to do it accidentally, cd into /, think you’re somewhere else or type into the wrong shell, and then rm -rf *
minus-squaredragnucs@lemmy.mllinkfedilinkarrow-up4·1 month agoA safe approach is to go up one dir ectody and run rm -rf dirname. With that habit you have high confid3nce of deleting folder you need.
minus-squarehuf [he/him]@hexbear.netlinkfedilinkEnglisharrow-up4·1 month agoi’ve always preferred rm -rf .*
minus-squareSasquatch@lemmy.mllinkfedilinkarrow-up1·1 month agoWont that get only the hidden files not normally collected in the plain * glob?
/*
Or the (probably, IDK) more common way to do it accidentally, cd into /, think you’re somewhere else or type into the wrong shell, and then rm -rf *
A safe approach is to go up one dir ectody and run rm -rf dirname. With that habit you have high confid3nce of deleting folder you need.
i’ve always preferred
rm -rf .*Wont that get only the hidden files not normally collected in the plain
*glob?plus
.and..