this post was submitted on 05 Oct 2024
11 points (61.2% liked)

Linux

47568 readers
811 users here now

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

Related Communities

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

founded 5 years ago
MODERATORS
top 10 comments
sorted by: hot top controversial new old
[–] Telorand@reddthat.com 21 points 9 hours ago* (last edited 9 hours ago) (5 children)

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.

[–] exu@feditown.com 3 points 4 hours ago* (last edited 4 hours ago)

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

Edit: global -> glob dang autocorrect

[–] thingsiplay@beehaw.org 7 points 6 hours ago

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.

[–] fhein@lemmy.world 7 points 7 hours ago (1 children)

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

[–] Telorand@reddthat.com 3 points 7 hours ago

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.

[–] bigkahuna1986@lemmy.ml 10 points 8 hours ago

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

[–] ReversalHatchery@beehaw.org 3 points 8 hours ago (1 children)

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

[–] Telorand@reddthat.com 5 points 7 hours ago

But then you'd match terms like "liNuX" and "UniX," and that's just silly. 😆

[–] lurch@sh.itjust.works 1 points 10 hours ago (1 children)
[–] lord_ryvan@ttrpg.network 2 points 1 hour ago

(two B's or no two B's)