this post was submitted on 18 Jul 2023
575 points (98.2% liked)

linuxmemes

22239 readers
704 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.
  • These rules are somewhat loosened when the subject is a public figure. Still, do not attack their person or incite harrassment.
  • 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. Even if you watch it on a Linux machine.
  • 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.
  • Β 

    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
     
    you are viewing a single comment's thread
    view the rest of the comments
    [–] incompetentboob 20 points 2 years ago (2 children)

    Upvote for β€œsudo !!” No one ever seems to know about β€œ!!” And it’s such a useful command.

    I personally found out about it when I wrote a bash script that contained a password with two exclamation marks and I wondered why the last command kept being concatenated to the end of the password.

    Also checkout thefuck for fixing other various typos

    [–] lanolinoil 4 points 2 years ago (1 children)

    I'd like to know more about !!

    [–] QuazarOmega 8 points 2 years ago* (last edited 2 years ago) (1 children)

    It just expands into the last command you put in your shell, so it's useful for retrying a command that you want to prepend with sudo for example, if you realize you needed elevated privileges, or maybe you want to pipe something in it, pipe it through something, redirect its output etc.

    [–] lanolinoil 5 points 2 years ago

    Brilliant -- I've needed this so many times. Thanks for the explanation

    [–] [email protected] 1 points 2 years ago* (last edited 2 years ago) (1 children)

    My install of Endeavour doesn't have it, and I haven't been able to figure out what package to install to add it. Also haven't tried very hard cause it's just a minor convenience but if anyone knows ...

    Oooh it's cause I'm using fish isn't it? Is there a way to add it?

    [–] [email protected] 4 points 2 years ago (1 children)

    Had to check since this is something I've been wondering myself, but apparently not possible. From the fish FAQ:

    Because history substitution is an awkward interface that was invented before interactive line editing was even possible. Instead of adding this pseudo-syntax, fish opts for nice history searching and recall features. Switching requires a small change of habits: if you want to modify an old line/word, first recall it, then edit.

    However, for the use case here, with sudo:

    As a special case, most of the time history substitution is used as sudo !!. In that case just press Alt+S, and it will recall your last commandline with sudo prefixed (or toggle a sudo prefix on the current commandline if there is anything).

    [–] [email protected] 2 points 2 years ago

    Oh sick! Thank you!