Last active
December 19, 2015 15:19
-
-
Save alapolloni/5975235 to your computer and use it in GitHub Desktop.
Change the title of the console to the current directory
Windows Command 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
| Called by this: | |
| doskey cd=cd $* ^&^& @titledir.cmd | |
| File: titledir.com | |
| @echo off | |
| REM the @ turns off the echo for the 1st line and the echo off for the rest of the bat | |
| REM this cmd is paired with doskey cd=cd $* ^&^& @titledir.cmd | |
| for /f "delims=\" %%a in ("%cd%") do title %%~nxa |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment