424
Linux Cat (lemmy.zip)

ahh

~$ which cat
you are viewing a single comment's thread
view the rest of the comments
[-] lokalhorst@feddit.org 16 points 4 days ago* (last edited 4 days ago)

If I just want to look at the file, is there a better way than cat foo.txt? I guess I can't just do < foo.txt

[-] mote@lemmy.ca 20 points 4 days ago

So close! you have to do cat < foo.txt :-) (/s)

[-] dan@upvote.au 13 points 3 days ago* (last edited 3 days ago)

Admittedly I still use cat for this.

This also works too, but it's more verbose:

echo "$(<foo.txt)"

It's mentioned in the Bash man pages:

The command substitution $(cat file) can be replaced by the equivalent but faster $(< file).

EDIT: I was just informed that simply <foo.txt works too.

[-] not_IO 5 points 3 days ago

how in the world is this not a useless use of echo and equivalent to <foo.txt

[-] dan@upvote.au 5 points 3 days ago

OK, TIL you can just do <foo.txt. I didn't think that worked. Thanks!

[-] not_IO 1 points 21 hours ago

i don't think you can but idk why that's by I'm asking

[-] MonkeMischief@lemmy.today 1 points 2 days ago

If it's really long, I use less , because it breaks it up into navigable pages instead of filling your entire buffer. :)

Never knew about just using < though! Cool!

You can use less. There are also specialized ones for that purpose like bat.

this post was submitted on 03 Aug 2026
424 points (100.0% liked)

Programmer Humor

32666 readers
661 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 3 years ago
MODERATORS