this post was submitted on 18 Jun 2026
5 points (61.9% liked)

linux4noobs

4225 readers
25 users here now

linux4noobs


Noob Friendly, Expert Enabling

Whether you're a seasoned pro or the noobiest of noobs, you've found the right place for Linux support and information. With a dedication to supporting free and open source software, this community aims to ensure Linux fits your needs and works for you. From troubleshooting to tutorials, practical tips, news and more, all aspects of Linux are warmly welcomed. Join a community of like-minded enthusiasts and professionals driving Linux's ongoing evolution.


Seeking Support?

Community Rules

founded 2 years ago
MODERATORS
 
all 30 comments
sorted by: hot top controversial new old
[–] sin_free_for_00_days@sopuli.xyz 2 points 15 hours ago* (last edited 14 hours ago) (1 children)

As others have said, tab-complete should be able to do it. If not, here are two other options:

Is it the only "folder*" in the directory?

$  ls *folder*
‘folder’$‘003’

If you only have that, you should be able to use the wildcards to delete it:

rm *folder*

Another is just find the inode and delete using that:

$  ls -li | grep folder
5120013  .rw-rw-r-- user user  0 B  Fri Jun 19 21:09:02 2026 ‘folder’$‘003’

$ find . -inum 5120013 -delete
[–] OrangePumkin@piefed.nl 1 points 14 hours ago

I have uninstalled and reinstalled my WSL. Nothing exists now.

[–] just_another_person@lemmy.world 16 points 2 days ago (1 children)

Tab Completion if you're unsure how to escape characters in this case. Start the name of the folder, then hit TAB a couple times

[–] AbidingOhmsLaw@lemmy.ml 4 points 2 days ago* (last edited 2 days ago) (1 children)

⬆️⬆️⬆️This⬆️⬆️⬆️

[–] moonpiedumplings@programming.dev 3 points 15 hours ago* (last edited 13 hours ago) (1 children)

No, it should be:

↹↹↹This↹↹↹

[–] bigbangdangler@reddthat.com 2 points 14 hours ago

Or even:

Th↹

(Assuming you have a file/folder called "This" and no others starting with "Th")

[–] comrademiao@piefed.social 4 points 2 days ago

Can you not rm -rf then tab and select the folder automatically formatted as needed?

[–] sjohannes@programming.dev 4 points 2 days ago (2 children)

Is this homework of some sort?

By default, GNU ls will quote entries containing certain special or unprintable characters. For example, if a file name contains the space character, GNU ls will print e.g. 'hello world'. This quoting is done using Bash syntax.

In Bash, 'folder'$'\003' (or $'folder\003') represents the text folder followed by octal byte 3. Because you use Fish instead of Bash, this doesn't work­—it has a different syntax to specify unprintable/special characters.

I can tell you how to refer to this file in Fish, but I hesitate to do it if it's for homework. What I will do is point you to the part of the Fish documentation where this is (kind of) explained: in Fish for bash users#Quoting.

[–] BradleyUffner@lemmy.world 2 points 17 hours ago

I wouldn't expect homework to use fish. It seems a less useful and niche as a learning exercise.

[–] Successful_Try543@feddit.org 3 points 2 days ago* (last edited 2 days ago) (1 children)

Would it help to use ls --literal --show-control-chars to find out if \003 is indeed the representation of a special character?

[–] sjohannes@programming.dev 4 points 1 day ago* (last edited 1 day ago)

The 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
[–] AbidingOhmsLaw@lemmy.ml 3 points 2 days ago (1 children)

Fish is the command line shell your using (similar to bash). Usaslly the $ symbol perceeds a variable name, hence the error. Do you have a folder with a $ in the name?

[–] OrangePumkin@piefed.nl 4 points 2 days ago (5 children)

'folder'$'\003'

That's the name of the folder.

[–] ludrol@programming.dev 5 points 2 days ago

What does ls show?

you can escape special charcters with \ something like \'folder\'\$\'\\003\' might work

be careful with rm -rf as you might delete your entire disk if done badly. use some other command to test if it targets the correct directory like ls \'folder\'\$\'\\003\'

[–] Digit@lemmy.wtf 4 points 2 days ago

‘folder’$‘\003’

Oh that is unpleasantly fiddly to insert all the backslashes to escape the bits. Testing here, (fiddly to even make a dir called that, lol), for fun, instead of just pressing tab, ... is it just the $ and the \ you need to escape? and the ' are fine? Results here are inconclusive, not sure I managed to make a file with the same name, it showing here with extra outer '.

Probably easier to just interactively.... but yeah, in case needing to have it written for a script... probably easiest still to just press tab, to see how it arranges the escape syntax, and paste that into your script. ;)

The fi in fish is friendly interactive, after all.

[–] AbidingOhmsLaw@lemmy.ml 4 points 2 days ago* (last edited 2 days ago)

Yep as others have noted put a \ in front of each special character. The \ tells the system to treat the following character as a alphanumeric character in the string and not as a operator or a command. Since ', $ and \ are all special characters you will need a \ just before each when typing this name. Also as mentioned do this with a benign command like ls first to make sure your only acting on that specific directory or you might have a bad day.

Edit: How the heck did you get some of those folder names? Looks like a script with incorrect variable/macro substitution made these.

[–] neo@feddit.org 2 points 2 days ago* (last edited 2 days ago) (1 children)

I believe u should Type

rm -r \'folder\'\$\'\\003\'

Basically a \ interprets the following character as a character. With the ' I’m not sure, so maybe

rm -r 'folder'\$'\\003'

could do the trick too

Edit: correct code

[–] OrangePumkin@piefed.nl -3 points 2 days ago (2 children)

VyxDqcxlLm2L7Xj.png

After doing the step, the cursor simply came in the centre.

[–] Successful_Try543@feddit.org 2 points 2 days ago* (last edited 2 days ago)

there is a space between your first \ and the ' that doesn't belong there. (The backslash escapes the space, but not the apostrophe, that's why it's coloured red and not cyan)

Press Ctrl+C and try again with the corrected command.

[–] Successful_Try543@feddit.org 2 points 2 days ago* (last edited 2 days ago) (3 children)

Are the ~~hyphens~~ apostrophes and the backslash part of the folder name too?

If so, try \'folder\'\$\'\\003\' escaping the ~~hyphens~~ apostrophes ', the dollar sign $ and the backslash \.

[–] OrangePumkin@piefed.nl 1 points 2 days ago (1 children)
[–] OrangePumkin@piefed.nl 0 points 2 days ago (2 children)

Do you see the folder with the strange name here ?

[–] Digit@lemmy.wtf 2 points 2 days ago

Oh hey, seeing that has just given me another idea (not sure if anyone else mentioned this yet elsewhere further down in the conversation... but...)

Tried just using a unique portion of the name that's easy to type, along with asterisks for the rest? e.g. rmdir *old*00* (or rm -r if it's not an empty dir you want rid of).

[–] Successful_Try543@feddit.org 1 points 2 days ago (1 children)

As the other commenters and I have mentioned, you should try escaping any of the special characters ', $, and \ by a backslash, i.e. \', \$ and \\

[–] OrangePumkin@piefed.nl 0 points 2 days ago (1 children)
[–] Successful_Try543@feddit.org 1 points 2 days ago

rm -rf \'folder\'\$\'\\003\'

[–] OrangePumkin@piefed.nl 1 points 2 days ago (1 children)
[–] Successful_Try543@feddit.org 1 points 2 days ago

sorry, I mean apostrophes.

[–] OrangePumkin@piefed.nl 0 points 2 days ago

Nothing happened.