WindowsXP-SP1/mergedcomponents/setupinfs/stripchar.cmd

11 lines
159 B
Batchfile
Raw Normal View History

2001-01-01 00:00:00 +01:00
@echo off
setlocal enabledelayedexpansion
for /f "tokens=*" %%a in (%1) do (
set line=%%a
set char=!Line:~1!
echo !char! >>%2
)
endlocal