RosettaCodeData/Task/Write-entire-file/Batch-File/write-entire-file-2.bat

6 lines
164 B
Batchfile
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
@echo off
setlocal enableextensions
type nul>%1 || goto:eof
::don't ignore blank lines
for /f tokens^=1*^ delims^=]^ eol^= %%a in ('find /n /v ""') do echo(%%b>>%1