Cmder: Change directory (dir at another local disk)

Created on 12 Jan 2017  路  3Comments  路  Source: cmderdev/cmder

It is possible to change local disk with 'cd' command without usage '/d' flag?
It's so annoying to write /d everytime.

Most helpful comment

You could do an alias. Something like:

alias cdd=cd /d $*

Then:

cdd e:\test

Would change to 'e:\test'

Do not do the below because it could bread some stuff:

alias cd=cd /d $*

All 3 comments

This is not related to cmder. This is Microsoft cmd.exe syntax.

You could do an alias. Something like:

alias cdd=cd /d $*

Then:

cdd e:\test

Would change to 'e:\test'

Do not do the below because it could bread some stuff:

alias cd=cd /d $*

Thank you!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

tfarina picture tfarina  路  3Comments

luisrudge picture luisrudge  路  3Comments

GlassGruber picture GlassGruber  路  3Comments

jenisys picture jenisys  路  3Comments

justinmchase picture justinmchase  路  3Comments