You are viewing a single thread.
View all comments
41 points
*

Because there’s non-programmers in this community, if you aren’t sure what this means but are too afraid to ask, it’s a Regular Expression that better represents the terms “Linux” and “Unix.”

Though if we’re going to be that pedantic, it would be [nN][uiI][xX]$. That extra pipe wouldn’t actually do anything in the last example, because regexp picks one character from the set by default.

And if we want to be really pedantic,

(?!nix)[nN][uI][xX]$

Would be the most accurate.

Edit: based on comments, I think…

(nux|NIX)$

…would be the best. Then you don’t wind up with weird matches with things like UNiX.

permalink
report
reply
23 points

We’re talking about Unix so being as pedantic as possible is actually required.

permalink
report
parent
reply
17 points

Actually *nix isn’t a Regular Expression, because the star operator * requires a preceding character or object to apply to. This is a wildcard for the shell style globbing, where a single star doesn’t require a second object.

permalink
report
parent
reply
13 points

Isn’t (I|U) equivalent to ([IU])?

permalink
report
parent
reply
7 points

Yes, but you can really only do that with single characters, since your first example is an ordered group and the second is an unordered set in a capturing group. The equivalency drops off when you include more characters.

Plus, you can do things like [a-zA-Z], and you can’t do that with the former example.

I would imagine there’s a difference in computing overhead, too, but I have no idea which is more performant.

permalink
report
parent
reply
7 points

at that point we could just flip the switch for the case insensitive mode

permalink
report
parent
reply
7 points

But then you’d match terms like “liNuX” and “UniX,” and that’s just silly. 😆

permalink
report
parent
reply
4 points

The pattern they made already does that though lmao.

permalink
report
parent
reply
7 points
*

*nix is more likely to be a glob, therefore an accurate version would be *n?x

Edit: global -> glob dang autocorrect

permalink
report
parent
reply
3 points
*

All that effort, when you could’ve just called it LUNIX.

By the way, does this expression match LUNIX? But if so, won’t it also match Binux or Bunix?

permalink
report
parent
reply
3 points

Yep, it would match LUNIX and Binux, but it would not match Bunix because of the negative lookahead.

permalink
report
parent
reply
1 point
*
Deleted by creator
permalink
report
parent
reply

Linux

!linux@lemmy.ml

Create post

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

  • Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
  • No misinformation
  • No NSFW content
  • No hate speech, bigotry, etc

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

Community stats

  • 7.9K

    Monthly active users

  • 6.3K

    Posts

  • 175K

    Comments