Skip to content
Advertisement

Create CSV file using file name and file contents in Linux

I have a folder with over 400K txt files.

With names like

JavaScript

Each file has different content

I want to grab file name and file content and put in CSV.

Something like:

JavaScript

I know how to grab all the files in a directory in CSV using:

JavaScript

How can I also grab the contents of the file?

Advertisement

Answer

  1. find * is somewhat strange, find already scans recursively. find . is enough to include all find * (well, unless there is somewhat strange shell glob rules you take into account).
  2. We would need to iterate over the files. Also it would be nice to remove newlines.

JavaScript

will output:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement