I've several problems maintaining large production servers, in which some developers drop files from Windows environments, sometime with BOM-bytes (We use UTF8, and no need for that), causing lots of troubles.
Other times, I got a "no end of line" and "[DOS]" labels when vim-editing files directly on the server.
I recently discovered how to find for the bom byte, and how to delete it in a batch script. What about illegal bytes, bad EOLs?
Is it safe to use DOS Text Files on a linux environment? Any drawbacks If I use to convert them with dos2unix cmd ?
Regards