151
What are some of your most useful or favorite terminal commands?
(piefed.social)
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.
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
when I forget to include sudo in my command:
sudo !!If you use
fish, you just need to pressAlt+S.To add to this one, it also supports more than just the previous command (which is what !! means), you can do like
sudo !453to run command 453 from your history, also supports relative like!-5. You can also use without sudo if you want which is handy to do things like!lsfor the last ls command etc. Okay one more, you can add:pto the end to print the command before running it just in case like!systemctl:pwhich can be handy!Absolutely wild stuff, there. Thanks for knowledge sharing!
Also if you make a typo you can quickly fix it with ^, e.g.
ls /var/logs/apache^logs^logAnd if an argument recurs, global replacement is:
I usually spell this as
!!:gs/foo/bar/(in bash). Is there a functional difference?!command history can also take line and word selectors. I type something like!-2:2surprisingly often.Just use thefuck. My alias is set to “fu” for work. It’s amazing.
Similar-ish for quickly editing last command:
I forget where I got it. But mine will do this if I double tap ESC after I sent the command without sudo. Very useful.
I should probably figure out what it was I added to do this.
Doesn't issue the command. Have to hit enter. Useful to verify it's the right command first.
With the way bash history can work Id be worried about running sudo rm -rf ./* by mistake.
I learned about this through Bread On Penguins, she did a vid on useful commands
https://www.youtube.com/watch?v=PRm6tYo8nGY
with zsh, you can use it, and then press space to have the !! replaced by the previous command to be able to edit it :)
You can do this on bash too if you add
bind Space: magic-spaceto your bashrc/profile