Skip to content

Instantly share code, notes, and snippets.

@sys9kdr
Created November 18, 2017 14:53
Show Gist options
  • Select an option

  • Save sys9kdr/5deddc3e30c1f69329dbaa239094ca46 to your computer and use it in GitHub Desktop.

Select an option

Save sys9kdr/5deddc3e30c1f69329dbaa239094ca46 to your computer and use it in GitHub Desktop.
cd wrapper to use 'cd ~' on cmd.exe.
@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