Is there a way (say PowerShell, or a tool) in Windows that can recurse over a directory and convert any Unix files to Windows files.
I\'d be perfectly happy with a wa
download vim, open your file and issue
:se fileformat=dos|up
Batch for multiple files (all *.txt files in C:\tmp - recursive):
:args C:\tmp\**\*.txt :argdo se fileformat=dos|up