I know I can pushd / popd if I want to save the current location before chdir into another directory. In bash I can go back to the directory before the last chdir by:
$ chdir /somedir
$ chdir -
I'm wondering if I can go back for several steps (chdir ---- maybe??), just using chdir rather than pushd / popd, in bash is that possible?
