Often, I'm leaving the terminal and the next day run it again. Then I want to be able to quickly go back to the last working directory.
I would like to do this using cd -
as usual. But $OLDPWD
is not kept between terminal sessions.
So I added an alias for exit
to write pwd
to a file and read it on the next start.
alias exit='pwd > ~/.lwd && exit;'
test -f ~/.lwd && export OLDPWD=`head -1 ~/.lwd`
That works perfectly for exit
.
How can I create the same alias (or make a trap) for Ctrl+D
?
cd
ed directory, right? Then this might be of some help – Anwar May 11 '17 at 06:52