this post was submitted on 31 Aug 2024
657 points (96.2% liked)

Microblog Memes

5699 readers
3077 users here now

A place to share screenshots of Microblog posts, whether from Mastodon, tumblr, ~~Twitter~~ X, KBin, Threads or elsewhere.

Created as an evolution of White People Twitter and other tweet-capture subreddits.

Rules:

  1. Please put at least one word relevant to the post in the post title.
  2. Be nice.
  3. No advertising, brand promotion or guerilla marketing.
  4. Posters are encouraged to link to the toot or tweet etc in the description of posts.

Related communities:

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] rc__buggy@sh.itjust.works 22 points 2 months ago* (last edited 2 months ago) (5 children)

tee isn't exactly the opposite of cat but I can't remember a command that only redirects screen output to a file.

What is up, tee?

edit: what's the opposite of "cd .."?

[–] SpaceNoodle@lemmy.world 5 points 2 months ago (2 children)

cat is for concatenating files, so the opposite would be something that breaks a stream up into multiple files.

[–] joranvar@feddit.nl 8 points 2 months ago* (last edited 2 months ago) (2 children)

So, split.

Edit: although there's also tac, which could fit the bill as well.

[–] SpaceNoodle@lemmy.world 3 points 2 months ago (1 children)
[–] joranvar@feddit.nl 2 points 2 months ago

Heh, no, but they do have a nice set of man pages and other documentation online. I prefer NixOS. Easier keeping track of configuration, easier rolling back of (and experimentation with) new stuff.

[–] rc__buggy@sh.itjust.works 3 points 2 months ago (1 children)
[–] joranvar@feddit.nl 3 points 2 months ago (1 children)

I mean... it's nice that it exists and all, but I can't really think of many useful usecases.

[–] rc__buggy@sh.itjust.works 2 points 2 months ago (1 children)

I think I only ever used it in an intro to shell scripting where we (almost) recreated the function of tail

[–] joranvar@feddit.nl 2 points 2 months ago

Something like tac | head | tac, I guess? Yes, that's a valid use case indeed :)

[–] tetris11@lemmy.ml 1 points 2 months ago

tac is a real command and does exactly what you think it is

How about tac which prints lines but last to first.

[–] jaybone@lemmy.world 3 points 2 months ago

It prints to stdout. I’d say the opposite is read, which reads from stdin.

[–] Karyoplasma@discuss.tchncs.de 2 points 2 months ago

Hmm, maybe pwd?

[–] Trigger2_2000@sh.itjust.works 2 points 2 months ago (1 children)
[–] jaybone@lemmy.world 2 points 2 months ago

There’s pushd where the opposite is clearly popd.