For fast locating positions when using the command line(Yes, I'm an Emacs fan). After viewing Bash' man, I can't find such tips. Does it need to modify readline's source code to support this?
Thank you very much!!
feedback
|
|
I don't know of a way to do it directly in the command line, but bash does support a keypress that will open the command line in your editor of choice. From the bash manpage:
So hitting CTRL-x CTRL-e in emacs bindings mode (the default) or ESC v in vi bindings mode ( | |||
|
feedback
|
|
CTRL-r (reverse-i-search) will allow you to search the current line as well as anything in your history. If you want to jump back a couple of arguments, you can hit space, then CTRL-r again to "find again". Escape will break out of it with the cursor at the last search result. | |||
|
feedback
|