LoveEspresso@retrofed.com to Explain Like I'm Five@lemmy.worldEnglish · 1 month 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-square13linkfedilinkarrow-up15arrow-down126
arrow-up1-21arrow-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 · 1 month agomessage-square13linkfedilink
minus-squarefoggy@lemmy.worldlinkfedilinkEnglisharrow-up7·1 month 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 :))