Created
August 26, 2012 12:32
-
-
Save hokorobi/3478551 to your computer and use it in GitHub Desktop.
コマンドプロンプトのタイトルへ常にカレントディレクトリを表示する
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
| @title %CD% | |
| @set batchdir=%~dp0 | |
| @doskey /macrofile=%batchdir%\start03.bat |
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 | |
| if %1. == . cd /d %HOMEDRIVE%%HOMEPATH% && goto end | |
| cd /d %1 | |
| :end | |
| title %CD% |
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
| cd=%batchdir%\start02.bat $* |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://japan.zdnet.com/os/analysis/20365625/ に少し手を加えた。