René Nyffenegger's collection of things on the web | |
René Nyffenegger on Oracle - Most wanted - Feedback
- Follow @renenyffenegger
|
cd [windows cmd] | ||
cd /d
I am in my c: drive (c:\tools) and do a:
C:\tools>cd d:\music
Strangly, I am still in the c: drive. Only if I do a d:, I see that I changed to the music directory under d:
C:\tools>d: D:\music>
In order to change both, the drive and the path, the /d flag must be used:
D:\music>cd /d c:\bin C:\bin> |