Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Comments on Are there any legitimate uses for newlines in filenames?

Post

Are there any legitimate uses for newlines in filenames?

+8
−0

Unix is very permissive with filenames, and this can sometimes lead to a bunch of annoying corner cases when printing files. A well known example is when you put a newline in a filename, and it breaks naive parsing of a file list later in the pipeline.

There's not much mystery around why Unix decided to be permissive with filenames, so I'm not asking why newlines are allowed in filenames.

However, are there any situations where it is useful (or necessary, or desirable...) to have newlines in filenames? Hypothetical is okay, but "in the wild" would be even better.

I've only seen it when someone is deliberately trying to set up a trap (hacking, pranks) or by accident (programmer forgot to add a whitespace normalizer to their filename generator).

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

3 comment threads

A related question (opinion based) is are there practical cases where a very long file name is useful... (2 comments)
About newlines and other problems with filenames (2 comments)
Fun fact: comparison of allowed characters (1 comment)
A related question (opinion based) is are there practical cases where a very long file name is useful...

A related question (opinion based) is are there practical cases where a very long file name is useful (e.g. file paths above a thousand characters)

Name or path? Kind of a big difference in this context :)

For names I don't think it really matters, but also I don't see much reason for a de jure limit (as opposed de facto limits imposed by implementation, which come and go without impacting the official standard).

For paths, it can be very useful to have long names. A classic example is when some program generates a deep file tree that approaches the length limit. You then want to move this to some subfolder, but now you can't because that would put you over the limit.

Another one is you try to rename an innocent folder, and get errors about length because it happens to contain some deep folders.

Some encryption/data storage systems generate a lot of small files. For example git has its own peculiar object store. It normally is rather wide than deep, but you can see how some people see a use case for arbitrary path length.

Not to say it is a good practice to have very long filenames, though.