LoveEspresso@retrofed.com to Explain Like I'm FiveEnglish · 2 days 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-down124
arrow-up1-19arrow-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 FiveEnglish · 2 days agomessage-square13linkfedilink
minus-squarefoggylinkfedilinkEnglisharrow-up7·2 days 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 :))