Skip to content

Instantly share code, notes, and snippets.

@gitgrimbo
Created January 31, 2017 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gitgrimbo/3a6bc788259d9b6b6e700da8eca5d7a3 to your computer and use it in GitHub Desktop.
Save gitgrimbo/3a6bc788259d9b6b6e700da8eca5d7a3 to your computer and use it in GitHub Desktop.
Utility batch/script files

Sets the cmd window title to the current folder name.

@echo off
set MYDIR=%cd%
set MYDIR1=%MYDIR:~0%

for %%f in (%MYDIR1%) do set MYDIR=%%~nxf
title %MYDIR%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment