Created
November 18, 2017 14:53
-
-
Save sys9kdr/5deddc3e30c1f69329dbaa239094ca46 to your computer and use it in GitHub Desktop.
cd wrapper to use 'cd ~' on cmd.exe.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| REM cd wrapper to use 'cd ~' on cmd.exe. | |
| REM ---------------------------------------- | |
| REM usage | |
| REM 1. Add the %PATH% to direcroty including this DOS Batch. | |
| REM 2. doskey cd=tildecd $* | |
| REM 3. cd ~ | |
| REM Known Issues | |
| REM * Tab completeion doesn't work | |
| set tildedest= %* | |
| call chdir /d %%tildedest: ~= %USERPROFILE%%% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment