OrangePumkin@piefed.nl to linux4noobs@programming.devEnglish · 23 days agoI am trying to get rid of this folder, but the result is saying that fish expects a variable name after this $. What does it mean ? And how do i get rid of this folder ?objectstorage.eu-amsterdam-1.oraclecloud.comimagemessage-square31linkfedilinkarrow-up114arrow-down19 cross-posted to: techsupport@lemmy.worldexplainlikeimfive@lemmy.world
arrow-up15arrow-down1imageI am trying to get rid of this folder, but the result is saying that fish expects a variable name after this $. What does it mean ? And how do i get rid of this folder ?objectstorage.eu-amsterdam-1.oraclecloud.comOrangePumkin@piefed.nl to linux4noobs@programming.devEnglish · 23 days agomessage-square31linkfedilink cross-posted to: techsupport@lemmy.worldexplainlikeimfive@lemmy.world
minus-squaresjohannes@programming.devlinkfedilinkEnglisharrow-up4·edit-222 days agoThe default output itself is pretty definitive, assuming you are indeed using GNU ls and don’t have the QUOTING_STYLE environment variable set. https://www.gnu.org/software/coreutils/manual/html_node/Formatting-the-file-names.html explains all this (including your options) and more. $ touch $'folder\x03' $ ls --quoting-style shell-escape # the default 'folder'$'\003' $ ls --quoting-style c "folder\003" $ ls --quoting-style escape folder\003
The default output itself is pretty definitive, assuming you are indeed using GNU
lsand don’t have theQUOTING_STYLEenvironment variable set. https://www.gnu.org/software/coreutils/manual/html_node/Formatting-the-file-names.html explains all this (including your options) and more.$ touch $'folder\x03' $ ls --quoting-style shell-escape # the default 'folder'$'\003' $ ls --quoting-style c "folder\003" $ ls --quoting-style escape folder\003