mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-29 02:25:37 -05:00
7 lines
141 B
Batchfile
7 lines
141 B
Batchfile
|
@echo off
|
||
|
setlocal EnableDelayedExpansion
|
||
|
set "file=%1"
|
||
|
for /f "usebackq tokens=* delims=;" %%a in ("%file%") do (
|
||
|
echo.%%a
|
||
|
)
|
||
|
endlocal
|