Large Text File into CSV

Rapid how
1 min readNov 11, 2022

Large text files can be difficult to work with in a spreadsheet or text editor. CSV (comma-separated values) is a popular format for storing data in a text file. CSV can be easily converted into a spreadsheet, and it is easy to read and edit.

To create a CSV file, first open the large text file in a text editor. Next, copy and paste the text into a new text file. To convert the text into a CSV file, use the csv command line tool.

cvs -d “path to large text file” -r “path to csv file” -t “name of csv file” > large.csv

The cvs command line tool will create a new csv file in the path specified. The -d parameter specifies the path to the large text file. The -r parameter specifies the path to the csv file. The -t parameter specifies the name of the csv file.

Read More….

--

--