LoveEspresso@retrofed.com to Explain Like I'm Five@lemmy.worldEnglish · 20 hours agoWhat is it saying in my terminal ?retrofed.comimagemessage-square15fedilinkarrow-up17arrow-down114
arrow-up1-7arrow-down1imageWhat is it saying in my terminal ?retrofed.comLoveEspresso@retrofed.com to Explain Like I'm Five@lemmy.worldEnglish · 20 hours agomessage-square15fedilink
minus-squaregravitas_deficiency@sh.itjust.workslinkfedilinkEnglisharrow-up7·edit-218 hours agoIn that case, I think you want rm -rf "'folder'\$'\\003'" Note the double escape before 003, which will render to the character literal \ Alternatively, start typing rm -rf \'fo And then hit tab until fish autocompletes the directory you want to kill, and run it. Side note: i would absolutely not tolerate directories named like that lol
In that case, I think you want
Note the double escape before
003, which will render to the character literal\Alternatively, start typing
And then hit tab until
fishautocompletes the directory you want to kill, and run it.Side note: i would absolutely not tolerate directories named like that lol
Thanks for the tip.