5

Possible Duplicate:
Navigate to previous directory in windows command prompt

Is there an equivalent of Linux's cd - (change to previous directory) in Windows?

Steven
  • 2,349

3 Answers3

5

popd, which is to be used alongside pushd.

Jon
  • 1,081
1

See Navigate to previous directory in windows command prompt

-1

Yeah, it's identical, see here:

cd is frequently included built directly into the command line interpreter. This is the case in most of the Unix shells (Bourne shell, tcsh, bash, etc.), cmd.exe and Windows PowerShell on Windows and COMMAND.COM on DOS.

slhck
  • 228,104
sharpner
  • 115