this post was submitted on 12 Dec 2023
621 points (95.1% liked)

Memes

45198 readers
2579 users here now

Rules:

  1. Be civil and nice.
  2. Try not to excessively repost, as a rule of thumb, wait at least 2 months to do it if you have to.

founded 5 years ago
MODERATORS
 
  • ISO 8601 is paywalled
  • RFC allows a space instead of a T (e.g. 2020-12-09 16:09:...) which is nicer to read.
you are viewing a single comment's thread
view the rest of the comments
[–] lolcatnip@reddthat.com 1 points 9 months ago* (last edited 9 months ago) (1 children)

Ok, I just reread it. I don't see what you think I'm missing. You mean an improperly written find command misbehaving? The fact that a different date format could prevent a bug from manifesting doesn't seem like much of an argument.

[–] black0ut@pawb.social 2 points 9 months ago (1 children)

Spaces can exist in filenames. The only problem is that they have to be escaped. As the comment that you reread explained, cat hello world.txt would print the files hello and world.txt. If you wanted to print the file "hello world.txt" you'd either need to quote it (cat "hello world.txt") or escape the space (cat hello\ world.txt)

[–] lolcatnip@reddthat.com 2 points 9 months ago

Oh, the horror!