this post was submitted on 22 Jun 2023
29 points (100.0% liked)

Linux

47548 readers
506 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
29
cat vs sed vs awk (lemmy.sdf.org)
submitted 1 year ago* (last edited 1 year ago) by sebastiancarlos@lemmy.sdf.org to c/linux@lemmy.ml
 
you are viewing a single comment's thread
view the rest of the comments
[–] sebastiancarlos@lemmy.sdf.org 4 points 1 year ago (2 children)

just trying to get a good mental model of when it's reasonable to use tools like awk instead of simpler unix tools. also further confirming that sed is almost never the best tool except for substitutions.

[–] taladar@sh.itjust.works 6 points 1 year ago (1 children)

Sed and awk have a lot of overlap. Another thing to consider is that neither might be the right choice if you are inside a bash script since spawning a new process in a tight loop can be very expensive and bash's built-in regex operations can have much better performance in those situations.

[–] sebastiancarlos@lemmy.sdf.org 2 points 1 year ago

That's a good point. If I need something like a bash script I tend to stick to bash features as much as possible.

[–] Mount_Linux@lemmy.world 2 points 1 year ago

Ok, I would say... cat is mostly used for output of files, and concatenating files. sed and awk are good at reshaping the output of files or piped std input. They both require some time to learn, but it is worth going back to them.