kali_fornication@lemmy.world to linuxmemes@lemmy.world · 1 day agothis command saves liveslemmy.worldimagemessage-square46fedilinkarrow-up1527
arrow-up1527imagethis command saves liveslemmy.worldkali_fornication@lemmy.world to linuxmemes@lemmy.world · 1 day agomessage-square46fedilink
minus-squarez3rOR0ne@lemmy.mllinkfedilinkarrow-up2·22 hours agoOh god…why would you not just cd .. and rm -r the directory name?
minus-squareWhyJiffie@sh.itjust.workslinkfedilinkEnglisharrow-up6·22 hours agoBecause you don’t always want to delete the directory itself, to then recreate it and set the ownerships and permissions again
minus-squarez3rOR0ne@lemmy.mllinkfedilinkarrow-up0·21 hours agoFair enough. Then why not cd .., rm ./dir_name/* ?
minus-squareWhyJiffie@sh.itjust.workslinkfedilinkEnglisharrow-up7·19 hours agobecause that does not delete hidden files in the directory
minus-squarez3rOR0ne@lemmy.mllinkfedilinkarrow-up1·18 hours agoFair enough. Why not tack on rm ./.* as well to that list? Lol. Sorry, I’m truly just curious and not trying to be a smart alec.
minus-squareWhyJiffie@sh.itjust.workslinkfedilinkEnglisharrow-up7·16 hours agowith that we arrive at the original problem: depending on your shell and its configuration, .. could be part of the results of the glob expansion. so at that point why bother stepping one dir level up
minus-squarez3rOR0ne@lemmy.mllinkfedilinkarrow-up1·12 hours agoAh I see. Very interesting! Thank you.
Oh god…why would you not just
cd ..andrm -rthe directory name?Because you don’t always want to delete the directory itself, to then recreate it and set the ownerships and permissions again
Fair enough. Then why not
cd ..,rm ./dir_name/*?because that does not delete hidden files in the directory
Fair enough. Why not tack on
rm ./.*as well to that list? Lol. Sorry, I’m truly just curious and not trying to be a smart alec.with that we arrive at the original problem: depending on your shell and its configuration,
..could be part of the results of the glob expansion. so at that point why bother stepping one dir level upAh I see. Very interesting! Thank you.