computing
  • 2

Deleting Header Row From a Csv File

  • 2

Does anyone know how to delete a header row from a .CSV file using a batch file? Please let me know, any help would be appreciated.

Share

1 Answer

  1. Use the More command with the +1 switch

    More +1 inputfile.csv > outputfile.csv

    Enter More /? at the command prompt for further info.

    Good luck.

    • 0