8.6.10

Batch File - Converting a unix file to windows file

TYPE unix_file.txt | FIND "" /V > windows_file.txt

or

FOR /f "eol= tokens=* delims=" %%i in (unix_file.txt) do echo %%i >>windows_file.txt

0 comentários:

Post a Comment