codecombat/scripts/windows/coco-dev-setup/batch/print_file.bat

7 lines
141 B
Batchfile
Raw Normal View History

@echo off
setlocal EnableDelayedExpansion
set "file=%1"
for /f "usebackq tokens=* delims=;" %%a in ("%file%") do (
echo.%%a
)
endlocal