• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How to concatenate multiple files together?

AgentEL

Golden Member
I have files numbered:

file001.txt
file002.txt
file003.txt
.
.
.
file100.txt

Is there a way to concatenate all these files in numerical order?
 
it's been ages for me since i've used cat, but isn't it just: cat file*.txt > output.txt

sorry if i'm way off.
 
the standard copy command can concatenate files also.

copy *.txt asdf.txt

That will combine your 100 txt files into one file called asdf.txt, located in the same directory, and leaves your originals unchanged.
 
Back
Top