this post was submitted on 17 Nov 2023
131 points (94.6% liked)

linuxmemes

26623 readers
1564 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like "every user of thing".
  • Don't get baited into back-and-forth insults. We are not animals.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn, no politics, no trolling or ragebaiting.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
  • 5. πŸ‡¬πŸ‡§ Language/язык/Sprache
  • This is primarily an English-speaking community. πŸ‡¬πŸ‡§πŸ‡¦πŸ‡ΊπŸ‡ΊπŸ‡Έ
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
  • 6. (NEW!) Regarding public figuresWe all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.
  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.
  • Β 

    Please report posts and comments that break these rules!


    Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.

    founded 2 years ago
    MODERATORS
     
    all 12 comments
    sorted by: hot top controversial new old
    [–] Tau@sopuli.xyz 18 points 2 years ago (2 children)

    :%s/warning/error/gn

    You don't even have to touch your mouse

    [–] Prunebutt@feddit.de 7 points 2 years ago

    Joke's on you: tiling wm

    [–] Andrew15_5@mander.xyz 3 points 2 years ago (1 children)

    With sed command you don't have to use mouse either.

    [–] Tau@sopuli.xyz 1 points 2 years ago (2 children)

    But you have to use your mouse to switch to a new terminal, assuming you are using vscode for everything else

    [–] mexicancartel@lemmy.dbzer0.com 8 points 2 years ago* (last edited 2 years ago)

    Ctrl+alt+t

    $ sed...

    ctrl+d

    [–] Andrew15_5@mander.xyz 3 points 2 years ago

    You assumption is wrong. I'm a chad that only use terminal and Neovim. I don't need those filthy mouses. I have a touchpad instead that I also rarely use. I have millions of keymaps engraved in my brain, give me a keyboard and a terminal and I will move mountains.

    [–] jeffhykin@lemm.ee 12 points 2 years ago (2 children)

    sd or nothing. I'm never dealing with sed's slow and out of date regex ever again

    [–] DoomBot5@lemmy.world 9 points 2 years ago (1 children)

    Oh look, this one isn't installed on practically every Linux machine in existence

    [–] jeffhykin@lemm.ee 1 points 2 years ago

    For now 😎

    [–] palordrolap@kbin.social 6 points 2 years ago

    You know that sed does more than s///g, right?

    Someone even wrote a version of dc (the arbitrary precision RPN desktop calculator) with it. They were clearly insane of course, but it proves that sed is more than just find and replace.

    Honourable mention to awk's sub() and gsub() that, at least for basic find/replace, do the same thing. awk is often surprisingly quick.

    [–] paholg@lemm.ee 2 points 2 years ago

    I just learned that the Mac version of sed requires a backup file for the -i flag, making it really hard to write cross-platform scripts that use it.