replacing last command and execute it
$ echo "hello world world world"
hello world world world# If you use ZSH you can press `tab` at the end of the line and it will replace
# the whole line with the actuall command
$ ^world^universe
$ echo "hello universe world world"# zsh
$ ^world^universe^:G
# bash
$^world^universe^&Last updated