This is the example, a shortcut was installed to this code
:
::@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
:: $Header: C:/DBAREIS/Projects.PVCS/Win32/ScriptingTipsAndTricks/EXAMPLE[cmd].RemoveTrailingSpacesTabs [removes spaces and tabs].cmd.txt.pvcs 1.0 29 Jun 2014 12:51:22 USER "Dennis" $
::@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
set TheDir=C:\TEMP\ &rem ends in spaces and trailing "\"...
:RemoveTrailingSpacesTabs
if "%TheDir:~-1%" == " " set TheDir=%TheDir:~0,-1%& goto RemoveTrailingSpacesTabs
if "%TheDir:~-1%" == "%TAB%" set TheDir=%TheDir:~0,-1%& goto RemoveTrailingSpacesTabs
if "%TheDir:~-1%" == "\" set TheDir=%TheDir:~0,-1%
Goto :EOF