Quote:
|
Originally Posted by zazzybob
You may find the "r" alias does this, if you don't have the r alias, alias it yourself:
Code:
$ alias r='fc -e -'
$ pwd
/some/path
$ r
pwd
/some/path
Cheers
ZB
|
If you really want it to be !! you could also do:
Code:
alias !!='fc -e -'