What is the quickest and most pragmatic way to combine all *.txt file in a directory into one large text file?
Currently I'm using windows with cygwin so I have access to BASH.
Windows shell command would be nice too but I doubt there is one.
|
What is the quickest and most pragmatic way to combine all *.txt file in a directory into one large text file? Currently I'm using windows with cygwin so I have access to BASH. Windows shell command would be nice too but I doubt there is one. |
||||
|
|
|
This appends the output to all.txt
This overwrites all.txt
|
|||||||||||||
|
|
Just remember, for all the solutions given so far, the shell decides the order in which the files are concatenated. For Bash, IIRC, that's alphabetical order. If the order is important, you should either name the files appropriately (01file.txt, 02file.txt, etc...) or specify each file in the order you want it concatenated.
|
|||
|
|
|
The Windows shell command
Type |
|||||||
|
|
You can use Windows shell
From the help:
|
|||
|
|
For Example:
That will Take all the txt files in the C:\ Folder and save it in C:\1 Folder by the name of all.txt Or
For Example:
That will take all the files that are present in the folder and put there Content in C:\1\all.txt |
||||
|
|
|
the most pragmatic way with the shell is the cat command. other ways include,
|
|||
|
|
|
all of that is nasty.... ls | grep *.txt | while read file; do cat $file >> ./output.txt; done; easy stuff. |
|||||
|
;) EDIT: Store/Append directly to the file |
|||||||
|