this post was submitted on 22 Sep 2025
967 points (98.8% liked)

Programmer Humor

26551 readers
2351 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] IcedRaktajino@startrek.website 110 points 3 days ago (39 children)

I've recently learned that in Linux, you can use emois in filenames. I died a ~~little~~ lot inside when I learned that.

[–] FrostyPolicy@suppo.fi 77 points 3 days ago* (last edited 3 days ago) (19 children)

On Linux file systems you can use any character except NULL, and / is a reserved character.

E.g. on ext-4 "All characters and character sequences permitted, except for NULL ('\0'), '/', and the special file names "." and ".." which are reserved for indicating (respectively) current and parent directories."

[–] xthexder@l.sw0.com 54 points 3 days ago (14 children)

I once accidentally created a file with a newline character in it... it was pretty tricky to fix from command line.

[–] Warl0k3@lemmy.world 3 points 3 days ago* (last edited 3 days ago) (2 children)

Did you not just use tab? That's the usual method of dealing with weird characters in filenames that I've found

[–] xthexder@l.sw0.com 3 points 3 days ago

This was quite a while ago now, but I don't think my shell escaped the tab complete properly, I remember it just printing a literal newline and evaluating it as a second command. I think there was other unicode in there too, otherwise I would have just typed it out. I had to do something with null terminated output and piping it in to mv, but I can't remember what exactly.

[–] Hupf@feddit.org 1 points 3 days ago (1 children)

Too bad when there's multiple files starting with and consisting mostly of e.g. kanji (when on a Latin keyboard).

[–] brotundspiele@sh.itjust.works 4 points 3 days ago

With the right shell, you can just press tab multiple times to cycle through the possible completions.

load more comments (11 replies)
load more comments (15 replies)
load more comments (34 replies)