7
votes
What is your single most favorite command-line trick using Bash?
I use the following a lot:
The :p modifier to print a history result. E.g.
!!:p
Will print the last command so you can check that it's correct …
0
votes
Bash autocompletion in Emacs shell-mode
In the emacs shell, it's actually emacs doing the auto-completion, not bash. If the shell and emacs are out of sync (e.g. by using pushd, popd or some bash user function that changes the shell's cu …
