For those who want to read about shopt, check:
http://www.gnu.org/software/bash/manual/bash.html#The-Shopt-...
Took me a bit to find it, and there seems to be no man entry.
Most important commands:
shopt -s histverify # activates the option
shopt -u histverify # deactivates the option
shopt # shows all available options and their activation status
You must put "shopt -s histverify" to your .bashrc so that it stays activated.
Well the one I use anyway.
For those who want to read about shopt, check:
http://www.gnu.org/software/bash/manual/bash.html#The-Shopt-...
Took me a bit to find it, and there seems to be no man entry.
Most important commands:
shopt -s histverify # activates the option
shopt -u histverify # deactivates the option
shopt # shows all available options and their activation status
You must put "shopt -s histverify" to your .bashrc so that it stays activated.