LoveEspresso@retrofed.com to Explain Like I'm Five@lemmy.worldEnglish · 20 hours agoWhen i am trying to remove the underlined folder using the rm command, this is the result that is being shown. What does this mean ??retrofed.comimagemessage-square13fedilinkarrow-up15arrow-down116
arrow-up1-11arrow-down1imageWhen i am trying to remove the underlined folder using the rm command, this is the result that is being shown. What does this mean ??retrofed.comLoveEspresso@retrofed.com to Explain Like I'm Five@lemmy.worldEnglish · 20 hours agomessage-square13fedilink
minus-squarefoggy@lemmy.worldlinkfedilinkEnglisharrow-up6·20 hours agoThose chars aren’t what they seem. The $‘\003’ is how gnu renders a byte it can’t print. Do rm -r (printf ‘folder\003’) Printf is your friend here.
Those chars aren’t what they seem. The $‘\003’ is how gnu renders a byte it can’t print.
Do
rm -r (printf ‘folder\003’)
Printf is your friend here.
Thanks :))