this post was submitted on 18 Dec 2024
32 points (88.1% liked)

Linux

48622 readers
1394 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
 

There I said it !

top 6 comments
sorted by: hot top controversial new old
[–] [email protected] 11 points 7 hours ago (1 children)

I agree. zgrep also works for uncompressed files, so we could use e.g. zgrep ^ instead of zcat.

[–] [email protected] 5 points 5 hours ago

Thanks, didn't know that existed

That's basically everything I was looking for !

[–] [email protected] 10 points 7 hours ago (2 children)

Yeah, it's a pain. Leads to bad one liners:

for i in $(ls); do zcat $i || cat $i; done

[–] [email protected] 2 points 7 minutes ago* (last edited 5 minutes ago)

That's really bad. zcat ./* 2>/dev/null || cat ./* does the same.

Btw, don't parse ls. Use find |while read -r instead.

[–] [email protected] 3 points 7 hours ago* (last edited 6 hours ago)

Thanks !

But still we shouldn't have to resort to this !

~~Also, can't get the output through pipe~~

for i in $(ls); do zcat $i || cat $i; done | grep mysearchterm

~~this appears to work~~

~~find . -type f -print0 | xargs -0 -I{} sh -c 'zcat "{}" 2>/dev/null || cat "{}"' | grep "mysearchterm"~~

~~Still, that was a speed bump that I guess everyone dealing with mass compressed log files has to figure out on the fly because zcat can't read uncompressed files ! argg !!!~~

for i in $(ls); do zcat $i 2>/dev/null || cat $i; done | grep mysearchterm

[–] [email protected] 1 points 5 hours ago

Celeste. Are you here? In a future search maybe?