0
There is a directory tree on a Windows7 machine containing a few hundred text files that I want to convert from LF to CRLF.
I already found a Win32 version of UNIX2DOS but that one accepts only one file at a time for input whereas I want to convert a whole set of directories and subdirectories recursively in a single run.
What is the easiest way to accomplish that task?
most tools will happily accept multiple files as input, like
– phuclv – 2018-10-27T03:35:06.823unix2dos *.txt
Convert Unix line endings to Windows