cd -

04 May 2013 in Tech

A short one today. In keeping with the moving around theme from yesterday, I want to take a look at cd -. cd - means "take me back to the last directory I was in".

So, starting in ~/michaelheap.com, and running cd /etc would take us to /etc. Running cd - would
take us back to ~/michaelheap.com and running cd - again would take us back to /etc.

bash
vagrant@precise64:~/michaelheap.com$ cd /etc
vagrant@precise64:/etc$ cd -
/home/vagrant/michaelheap.com
vagrant@precise64:~/michaelheap.com$ cd -
/etc
vagrant@precise64:/etc$ ​