Recent content by mandipdhillon

  1. M

    Solved! Convert CRLF to LF

    Hello i was wondering if you can assist in my batch file. i would the output file to be UNIX line ending (LF), however its defaults it to CRLF. I have been looking for 2 weeks for an answer. thanks. @echo off set "first=Yes" (for %%a in ("H:\data dumps\folder\combine\*.csv") do ( if...
  2. M

    Solved! Combining csv files into one csv, remove duplicate header

    Hello, the following batch script merges csv files into one, however the header after the first csv is merged too. How do i just include the first header only? copy *.csv /B newfilename.csv