Hacker News new | ask | show | jobs
by timeattack 2439 days ago
Most often case is when you forget to type sudo before command. This implementation propose to re-type executable name in all-caps (or type it in all-caps beforehand).

More efficient approach is to use keybinding like Ctrl+T to prepend sudo to the current command (or to the previous command if current is empty).

2 comments

As mentioned above, you don't need to retype:

        $ foo bar baz<cr>
        ^P^A<esc>u
        $ FOO bar baz<cr>
As for ^T, I'd wholly forgotten about bind, inputrc and all that- but of course both your proposal and the above can be put into an inputrc macro and bound to a key. However the all caps version is shorter when you remember you need sudo in the first place ;).
or use "sudo !!"