I virtually never use !! any more. Instead I just type control-r followed by a portion of the command in my history that I'm interested in.
That's a much more interactive way of getting to the command I want, and if the first match isn't what I want I can either keep typing more of the command or type control-r for the next match. I can also type control-s to go to the previous match. For that last trick to work, you need to do something like this first: stty stop ""
Granted, I use zsh, but I think it works pretty much the same in bash.
Another trick I really like, which I've only used in zsh, but which might exist in bash too (since bash and zsh have so much feature parity these days) is to bind a keystroke to "insert-last-word". When this keystroke is hit, it appends the last argument of the previous command to the end of the current line, further typing of this same keystroke will remove the appended argument and instead append the last argument of the previous command, and so on. I use this all the time and therefore never have to type !$
And my favorite shell trick of all time: set -o vi
> When this keystroke is hit, it appends the last argument of the previous command to the end of the current line
There's `Meta-_` to insert the previous last word, but you cannot cycle with the previous words--it inserts the last word of the previous commands. You can give it a count, though (with Meta+nums).
Agreed, but even nicer than control-r are the readline functions `history-search-backward` and `history-search-forward`.
Personally I bind them to up/down which on OS X at least involves:
# Put this in some file like ~/.readline-bindings
"\e[A": history-search-backward
"\e[B": history-search-forward
# And this in your ~/.bashrc or ~/.zshrc
bind -f ~/.readline-bindings
That way if you haven't typed any input it behaves like normal up (previous command), but if you've typed some characters it only retrieves matching commands.
Just curious since I don't use a mac, doesn't writing the mappings to .inputrc work? IIRC, putting your readline bindings there makes it available for all readline enabled prompts, not just bash ie: Python, pgsql, mysql,.. Etc
>Granted, I use zsh, but I think it works pretty much the same in bash.
I also use zsh and I don't even use ctrl+r anymore. I just type a portion of the command I remember and hit the up arrow key. Almost always the command I want is only one to three arrow keys away. zsh matches partial commands really well.
I like the incremental searching that using control-r lets you do. That can come in really handy when I don't remember precisely what the command I want is.
I can start typing and then type more once I see some results to hone in more precisely to what I want, or even backspace over some of what I've typed and type some more without having to start all over again.
Also, using control-r instead of the arrow keys doesn't force me to move my wrists and lets me keep my fingers mostly on the home row. I try to use the arrow keys as little as possible.
You should be able to use ctrl-p/n for arrow up/down. That keeps your hand on the homerow. Forget about arrow keys (especially on a typical mac keyboard).
Bash has similar commands available to move up and down by matching commands. However, I find such modal behavior of up/down confusing; I prefer to have up and down always move by one command, and use C-r for reverse isearch.
Agreed, but this only works if you know you are right about the beginning of the command. Ctrl-R is still the best way I know to search for a command that I may not be sure about the first letters of.
Agreed. I guess everything is subjective, but when I read the article state:
> While the [ctrl-r] method is more powerful, when doing some redundant task, it’s much easier to remember !22 than it is to muck with ctrl-r type searches or even the arrow keys.
I think Coding Horror gave a fairly succinct overview, including sources[1]. As usual, it's incomplete understanding and cargo-culting of opinions until the statement in question bears little resemblance to the original assertion.
Yes, there's far too little of this. I'd love something that combines the good points of Powershell and a GUI file explorer for example. Even the primitive out-gridview or ogv is incredibly handy.
I used to do !$ a lot until I configured iTerm to allow me to cycle through the last args with alt-. which is way faster. But I did not know about the colon modifiers, so !$ might make its way back into my workflow. ZSH gives me a nice overview of what's possible:
> !$:<tab>
& -- repeat substitution
A -- absolute path resolving symbolic links
Q -- strip quotes
a -- absolute path
c -- PATH search for command
e -- leave only extension
g -- globally apply s or &
h -- head - strip trailing path element
l -- lower case all words
q -- quote to escape further substitutions
r -- root - strip suffix
s -- substitute string
t -- tail - strip directories
u -- upper case all words
I don't use !!, or !$, because I prefer to see what command is being executed before I press enter. For the same reason, I will never use !word. But that's not a problem, because as others have noted bash makes it easy to not have to fall back to these.
Alt-. will generally add the prior last argument into the current command, and repeated presses will cycle through previous commands.
Ctrl-r will dynamically update to show you the prior command matched as you start typing afterwards, so you can confirm it's correct.
Both are essential if you want to reuse prior commands but either can't trust that you were the last person using the shell, or don't want a typo to ruin your day, and possibly many other people's day as well. That is, if you're a sysadmin using the automatic variants, I don't want you anywhere near systems I rely on, I want you far away. Perhaps working for a competitor.
I've got 'bind Space:magic-space' in my .bashrc, which performs history expansion after you hit space, maybe that partially helps. I guess there's friction if the expanded command isn't the one you want, which the interactive methods are better at dealing with.
I think this not just "partially helps", I think it completely addresses the problem described by the above commenter. Perhaps s/he is not aware of this feature.
Nope. It's easier to not have to make a decision about when to use !! or not, so I just don't. Up, Ctrl-a, "sudo ", Enter.
Another way of putting it is that I'll gladly press another 2-3 keys if it prevents a class or errors and also reduces the number of special bash instructions I have to keep in memory. !! isn't even in my repertoire, but I don't feel its loss.
A lot of times it is also about muscle memory. For example although I also use alt+. a lot (although not as often as ctrl+alt+.), for adding sudo my brain reverts to up, ctrl+a, sudo simply because I was doing those long before I learnt about Alt+.
yes, but it's not equivalent, as Alt-. only repeats the last argument.
For example, say you want to run "chown root:root foo". Alt-. gets you "foo", not the entire command, and "sudo foo" isn't useful,and in some cases could do something else entirely. For example, with the command "service foo restart", you would end up with "sudo restart" (which while it doesn't execute right away, is exactly what I'm guarding against).
M-. takes the last argument by default, but it can grab other arguments by using numeric arguments (M-1, M-2, etc.) that usually has the effect of repeating the next command.
Unlike Emacs, M-1 etc. can't be typed as C-u 1 etc.
I think I'm pretty proficient as a basher, but I also never use the bang, nor do I use the 'history' bit. Didn't know about alt-. tho, that's handy.
I could toss 'control-k' for 'delete to end of line' that hasn't been mentioned. And of course control-P/N for previous/next commands (or arrows obviously).
Don't forget about C-e for end of line and C-d for delete character forward. C-f and C-b make more sense to learn if you have regularly use their whole word variants Meta-f and Metals (alt f/b). Congrats, you know the emacs movement keys.
With zsh, you can tab-expand history… expansion. (Despite this, I also still prefer up-arrow and ^R, since it’s usually faster to ^A and Alt-B/F than to figure out the right way to reference history.)
Interesting - I use these so routinely it's unconscious, never had a problem. Though I suppose if I'm doing something remotely risky I'll not use them - though I'm not aware of doing that.
The class of shortcuts I love is:
[command] !:1-$
which copies the arguments to the previous command to this one. Or:
!:3
which copies the fourth argument.
Once those were under my fingers my fellow architects were astounded.
For a personal system, that's fine. For the situation where you are a sysadmin and are jumping onto one of possibly hundreds of systems, I prefer not to rely on a behavior that is specifically made more safe (implying it is less safe as it exists by default) by active configuration. In that situation, it's much easier to just not use the less safe version in favor of the safer version if not too burdensome, and both exist.
...otoh, if you are a sysadmin managing possibly hundreds of systems, you shouldn't be 'jumping onto' any one of them at all these days ! You ought to be using fabric, chef, puppet, ansible ...etc ...Ha ha, only serious ;-)
Sure, those reduce the instances you'll need a shell on a box, but they can't eliminate them. Sometimes you just need to see what's going on on that box, run top, see why there's a few thousand messages in the mail spool ad coax them through, figure out why SQL isn't responding or keeps dying, etc, etc.
>I don't use !!, or !$, because I prefer to see what command is being executed before I press enter.
I use zsh (with oh-my-zsh) and when I type e.g. "sudo !!" and press enter, it doesn't execute the command, instead it expands the !!. Another enter will then actually execute it.
I believe it's default behavior for oh-my-zsh. At least, I don't recall manually changing this.
In addition to all the other methods which have been mentioned bash has a function called history-expand-line which will expand the history inline. That allows you to even keep editing it before you hit enter. By default it's bound to the terrible M-^ (Alt-^) which might explain why nobody knows about it.
If you don't want to rely on the "histverify" option being enabled, you can get a similar effect by appending ":p" to the history reference, e.g.
sudo !!:p
which tells bash to do the history expansion, but print the result and add it to the command line history, instead of actually running it. If the command looks correct, it's only two more keystrokes (up-arrow, enter) to run it for real.
This would normally return the pair ("b", "c"), which GHCi prints to the screen. However, for some reason it was performing bash-like subtitution, giving me (on subsequent retries):
Enacs can be set to handle history substitution itself in various ways (the idea being that it can record an accurate history even when your shell can't). There's an option to configure if and when it does this, which you may want to set to never.
> I prefer to see what command is being executed before I press enter
On a similar note, I always get nervous when using "rm -rf", since the path is written in big-endian order, so an accidental nudge halfway through typing can cause something like
You can go one further. I have an alias 'cbuf=vim - -ccbuf!'
This takes whatever is piped in and loads it into the quickfix list. So I get locations out of anything with lines of the format "file:line: something" or "file:line:col: something".
One more handy one, when you have a complex command to deal with: C-x C-e will open up the current command line in your text editor, and when you save and quit, it'll run the line. So if you want to do some complex editing operation on the command line, you can do so with your preferred editor.
I wonder how many people know a few of these (like ctrl-a and ctrl-e and other navigation commands) come not from bash per se but from readline[0]. It isn't a surprise, then, that these mirror emacs commands. For example, one I use often is ctrl-k to kill to the end of a line...and, yes, just like emacs, you can yank it back with ctrl-y too :)...I often do this if I type out a huge command, forget that I needed to type another before, so I use that to "save" commands before execution. That is, it's essentially cheap copy and paste on the commandline.
Cherry on top? These work on other readline using tools! They work in the interactive repl's like python, node, irb, ghcim the exact same shortcuts... it makes working with repl's much more pleasant for me.
Indeed it does. According to the man page :
"When characters are supplied, the expression expands to each character lexicographically between x and y, inclusive, using the default C locale."
$ echo {a..z}
a b c d e f g h i j k l m n o p q r s t u v w x y z
But it does not seem to work with ranges outside ASCII such as "à..é", "あ..お", or smileys range, even though my locale should be ".UTF-8" compliant.
> Indeed it does. According to the man page : "When characters are supplied, the expression expands to each character lexicographically between x and y, inclusive, using the default C locale."
I think 'x' and 'y' are probably the worst variable names they could have chosen for this sentence :)
And as your last example illustrates, downward ranges are automatically invoked:
$ echo {10..1}
10 9 8 7 6 5 4 3 2 1
As are negative endpoints (shown below with some automatic number formatting, which is turned on when either the first or the second endpoint is padded):
$ echo {2..-002}
0002 0001 0000 -001 -002
I just noticed that all this is documented behavior -- another illustration of how rococo this shell has become.
I know of "M-." which will insert the last word of the previous command, and typing "M-." again will replace it with the last word of the command before that.
Is there something that goes through the words, instead? So I hit a key, it inserts the last word of the previous command, then I hit the key again and it replaces it with the penultimate word of the previous command?
I think using bang, I can do "!-3:1" to get the second word of the command three lines up?
Interestingly, none of the two Bash versions in the comments are equivalent to your code, which kind of prove your point with Bash being tricky. `while sleep 1` means the script will sleep once before running `df`, while it should only sleep after. The other command also won't work because it's missing colons between commands.
I second this. No shortcut to search history, just start typing and hit up. Instead of ctrl-e or whatever it is, it has the same "move by 1 word" shortcut as literally everything else on the computer. The pre-made prompt configurations that you can browse (with preview!) in a web browser is nice too. ZSH doesn't compare imo.
I second the voices, one downvoted but none really addressed, wondering why this is manifestly an improvement over the bash equivalent.
I certainly don't demand that everything in Fish be an improvement over everything in bash for Fish to nonetheless be superior... but this was presented specifically as an example of how Fish is great, and I could just as well say "Guess what this does" of the obvious bash equivalent:
I almost never use any of the "shortcuts" explained. And I wonder if it would be worth learning them.
They look much more cumbersome than the alternatives, I use in my everyday work.
I have to admit, that -- at some time in the past -- I've even tried to activate vim mode. As a heavy vim user i thought it would make sense.
At the end I'm stuck with the Emacs-inspired (is it really Emacs?) shortcuts.
They seem to be the ones that make most sense in the short living, very interactive, shell command line:
- Arrows for going up/down one or two commands,
- ctrl-r for interactive searching in the history,
- ctrl-a for going back to the beginning of the row,
- ctrl-e to the end,
- del & and backscape for deleting a bunch of chars,
- in some case ctrl-w for deleting words backwards (mostly for deleting the url in the latest wget command),
- and, of course, tab completion.
When I'm in need for more complex interactions:
- I start vim and
- work with a mix of !! commands (shell that outputs the result in the current vim buffer),
- vim manipulations (vertical selections, ctrl-x-f, qq short living macros), A and I with a . repeat),
- join everything in a row and yank it and, finally,
- a :!ctrl-r" to run it.
When the interaction is even more complex, than it's time for a shell script.
Last resort being a Python script.
Now, why would I take the time to write `rm my-file{-01,-02,old}` and risk getting a typo into it, instead of relying on the tab-autocomplete?
C-x C-e to edit the command line with EDITOR=vim in your .bashrc (or whereever you keep your configurations). When it quits it'll run the command for you. You don't need to join the lines. It's like a temporary shell script.
$ C-x C-e
# in vim
ipushd dir
do stuff
popd
<esc>:wq
158 comments
[ 3.2 ms ] story [ 217 ms ] threadAlso, look at the screen tips by the same author - http://samrowe.com/wordpress/2010/06/16/gnu-screen-quick-tip...
That's a much more interactive way of getting to the command I want, and if the first match isn't what I want I can either keep typing more of the command or type control-r for the next match. I can also type control-s to go to the previous match. For that last trick to work, you need to do something like this first: stty stop ""
Granted, I use zsh, but I think it works pretty much the same in bash.
Another trick I really like, which I've only used in zsh, but which might exist in bash too (since bash and zsh have so much feature parity these days) is to bind a keystroke to "insert-last-word". When this keystroke is hit, it appends the last argument of the previous command to the end of the current line, further typing of this same keystroke will remove the appended argument and instead append the last argument of the previous command, and so on. I use this all the time and therefore never have to type !$
And my favorite shell trick of all time: set -o vi
[0] https://github.com/junegunn/fzf
I'm a little wary of precompiled binaries.
There's `Meta-_` to insert the previous last word, but you cannot cycle with the previous words--it inserts the last word of the previous commands. You can give it a count, though (with Meta+nums).
Personally I bind them to up/down which on OS X at least involves:
That way if you haven't typed any input it behaves like normal up (previous command), but if you've typed some characters it only retrieves matching commands.http://codeinthehole.com/writing/the-most-important-command-...
I also use zsh and I don't even use ctrl+r anymore. I just type a portion of the command I remember and hit the up arrow key. Almost always the command I want is only one to three arrow keys away. zsh matches partial commands really well.
I can start typing and then type more once I see some results to hone in more precisely to what I want, or even backspace over some of what I've typed and type some more without having to start all over again.
Also, using control-r instead of the arrow keys doesn't force me to move my wrists and lets me keep my fingers mostly on the home row. I try to use the arrow keys as little as possible.
Now I gotta retrain my muscle memory :)
bindkey '^r' history-incremental-pattern-search-backward
When you remember parts of the commands, you can do "C-r" then "echo*something".
> While the [ctrl-r] method is more powerful, when doing some redundant task, it’s much easier to remember !22 than it is to muck with ctrl-r type searches or even the arrow keys.
how?!
I've heard more people say this than that GUI is faster. Also it really depends on what you are doing.
1: https://blog.codinghorror.com/revisiting-keyboard-vs-the-mou...
Think of DrRaket, Swift Playgrounds or Jupyter like experience.
It works for both Vim & Bash.
Alt-. will generally add the prior last argument into the current command, and repeated presses will cycle through previous commands.
Ctrl-r will dynamically update to show you the prior command matched as you start typing afterwards, so you can confirm it's correct.
Both are essential if you want to reuse prior commands but either can't trust that you were the last person using the shell, or don't want a typo to ruin your day, and possibly many other people's day as well. That is, if you're a sysadmin using the automatic variants, I don't want you anywhere near systems I rely on, I want you far away. Perhaps working for a competitor.
I think this not just "partially helps", I think it completely addresses the problem described by the above commenter. Perhaps s/he is not aware of this feature.
Not even "sudo !!" ?
You can see the command you just typed in the line above, and you just forgot to add sudo to it.
Another way of putting it is that I'll gladly press another 2-3 keys if it prevents a class or errors and also reduces the number of special bash instructions I have to keep in memory. !! isn't even in my repertoire, but I don't feel its loss.
For example, say you want to run "chown root:root foo". Alt-. gets you "foo", not the entire command, and "sudo foo" isn't useful,and in some cases could do something else entirely. For example, with the command "service foo restart", you would end up with "sudo restart" (which while it doesn't execute right away, is exactly what I'm guarding against).
Unlike Emacs, M-1 etc. can't be typed as C-u 1 etc.
But I'm an epic coward that even looks both to the left and the right before crossing a street. :-)
I think I'm pretty proficient as a basher, but I also never use the bang, nor do I use the 'history' bit. Didn't know about alt-. tho, that's handy.
I could toss 'control-k' for 'delete to end of line' that hasn't been mentioned. And of course control-P/N for previous/next commands (or arrows obviously).
The class of shortcuts I love is:
[command] !:1-$
which copies the arguments to the previous command to this one. Or:
!:3
which copies the fourth argument.
Once those were under my fingers my fellow architects were astounded.
shopt -s histverify
versus
shopt -u histverify
and then add whatever you prefer (-s probably) to your bashrc
I use zsh (with oh-my-zsh) and when I type e.g. "sudo !!" and press enter, it doesn't execute the command, instead it expands the !!. Another enter will then actually execute it.
I believe it's default behavior for oh-my-zsh. At least, I don't recall manually changing this.
I don't use history expansions, though, so YMMV
shopt -s histverify
history-expand-line is documented in: https://www.gnu.org/software/bash/manual/html_node/Miscellan...
Neither do I, intentionally at least.
This week I encountered a very bizarre problem when running GHCi (a Haskell REPL), invoked from bash in an Emacs "shell" buffer.
In Haskell, "!!" is a function for getting an element from a list, e.g.
This would normally return the pair ("b", "c"), which GHCi prints to the screen. However, for some reason it was performing bash-like subtitution, giving me (on subsequent retries): and so on exponentially!On a similar note, I always get nervous when using "rm -rf", since the path is written in big-endian order, so an accidental nudge halfway through typing can cause something like
To becomerm -rfi
lets you get an interactive mode so you can confirm what's happening before it gets erased.
This takes whatever is piped in and loads it into the quickfix list. So I get locations out of anything with lines of the format "file:line: something" or "file:line:col: something".
Eg: git grep -n | cbuf
I featured it in the cron.weekly newsletter 2 weeks ago: https://www.cronweekly.com/issue-44/
Cherry on top? These work on other readline using tools! They work in the interactive repl's like python, node, irb, ghcim the exact same shortcuts... it makes working with repl's much more pleasant for me.
[0] https://cnswww.cns.cwru.edu/php/chet/readline/rltop.html [1] quick note, node might use a readline like but it doesn't support yanking (pasting) unfortunately.
{1..99} will give 1 2 3 4 5 .. 9 10 11 12 .. 98 99
{01..99} will give 01 02 03 04 05 .. 09 10 11 12 .. 98 99
And so on. I think it also works with letters.
Indeed it does. According to the man page : "When characters are supplied, the expression expands to each character lexicographically between x and y, inclusive, using the default C locale."
$ echo {a..z}
a b c d e f g h i j k l m n o p q r s t u v w x y z
But it does not seem to work with ranges outside ASCII such as "à..é", "あ..お", or smileys range, even though my locale should be ".UTF-8" compliant.
Also, you can specify an increment value :
$ echo {0..42..7}
0 7 14 21 28 35 42
$ echo {z..a..3}
z w t q n k h e b
I think 'x' and 'y' are probably the worst variable names they could have chosen for this sentence :)
And as your last example illustrates, downward ranges are automatically invoked:
As are negative endpoints (shown below with some automatic number formatting, which is turned on when either the first or the second endpoint is padded): I just noticed that all this is documented behavior -- another illustration of how rococo this shell has become.Bash Shortcuts For Maximum Productivity [0]
[0] http://www.skorks.com/2009/09/bash-shortcuts-for-maximum-pro...
A missing piece of information IMHO: Ubuntu now maps a nice readline features to PgUp and PgDn: history-search-backward and history-search-forward.
Type the beginning of a command line, and with PgUp-PgDn, you will traverse your history for the command lines beginning with what you have typed.
That's a no-brainer in my Bash life.
Note: to enable that feature in your Bash, here is a tutorial: http://dqxtech.net/blog/2011-03-06/linux-bash-history-pgup-p...
Is there something that goes through the words, instead? So I hit a key, it inserts the last word of the previous command, then I hit the key again and it replaces it with the penultimate word of the previous command?
I think using bang, I can do "!-3:1" to get the second word of the command three lines up?
--Bash equivalent, not sure I see your point
I just don't see the point. Bash might have flaws, nothing is perfect, but it's one vital piece of software that most distros have installed.
I certainly don't demand that everything in Fish be an improvement over everything in bash for Fish to nonetheless be superior... but this was presented specifically as an example of how Fish is great, and I could just as well say "Guess what this does" of the obvious bash equivalent:
I don't need colors, or anything fancy in my prompt, but those two things I find to be really useful.
I have to admit, that -- at some time in the past -- I've even tried to activate vim mode. As a heavy vim user i thought it would make sense.
At the end I'm stuck with the Emacs-inspired (is it really Emacs?) shortcuts.
They seem to be the ones that make most sense in the short living, very interactive, shell command line:
- Arrows for going up/down one or two commands,
- ctrl-r for interactive searching in the history,
- ctrl-a for going back to the beginning of the row,
- ctrl-e to the end,
- del & and backscape for deleting a bunch of chars,
- in some case ctrl-w for deleting words backwards (mostly for deleting the url in the latest wget command),
- and, of course, tab completion.
When I'm in need for more complex interactions:
- I start vim and
- work with a mix of !! commands (shell that outputs the result in the current vim buffer),
- vim manipulations (vertical selections, ctrl-x-f, qq short living macros), A and I with a . repeat),
- join everything in a row and yank it and, finally,
- a :!ctrl-r" to run it.
When the interaction is even more complex, than it's time for a shell script.
Last resort being a Python script.
Now, why would I take the time to write `rm my-file{-01,-02,old}` and risk getting a typo into it, instead of relying on the tab-autocomplete?
does not work here on a mac, but i can think of using it!
thanks for mentioning.
the safest method for you is to edit your ~/.inputrc with vi(m). go to insert mode,
type "
type Ctrl-v
type PgUp (->a strange string is displayed),
type the following string ": history-search-backward
Do the same on another line for PgDn (replace backward with forward).
Save. Relaunch a Bash session. And that's it.
If you write `rm my-file{-01,-02,old}` and then press tab, it will expand it for you before you run it.