Is there a Windows command line tool that behaves like the linux version - if you have anumber of directories on the stack then pushd with no arguments cycles round that list of directories.
Edit I am interested in XP and Vista. I appreciate the OS have a pushd and popd command but they don't behave in the same way as the linux bash version
pushd cyclejust returns references to this page. – Synetech Feb 23 '11 at 22:17bash, thepushdcommand with no arguments rearranges the stack of remembered locations, making one of the others current. Used multiple times, this can cycle you through several remembered places. It is quite handy once you get used to it. The Windows version does not do this trick. – RBerteig Feb 23 '11 at 22:37