this post was submitted on 29 Oct 2024
25 points (100.0% liked)

Linux

47930 readers
1251 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 3 comments
sorted by: hot top controversial new old
[–] BitSound@lemmy.world 5 points 1 day ago (2 children)

Does anyone here actually use awk for more than trivial operations? If I ever have to have to consider writing anything substantial with bash/awk/sed/etc, I just start writing a Python script. No hate to the classic tools, but Python is just really nice.

[–] smeg@feddit.uk 3 points 17 hours ago

If find myself writing anything I'd call a "program" (rather than just a script) in bash then it's time to think about using a proper language rather than a shell script, let alone awk or sed!

[–] sping@lemmy.sdf.org 1 points 1 day ago

Yeah. Heaviest awk I've ever done is extracting a value to a variable from a line with one pattern and using it to populate output from later lines matching another pattern.