I have multiple files which I want to concat with cat.
Let’s say
File1.txt
foo
File2.txt
bar
File3.txt
qux
I want to concat so that the final file looks like:
foo
bar
qux
Instead of this with usual cat File*.txt > finalfile.txt
foo
bar
qux
What’s the right way to do it?
You can do:
Make sure the file
finalfile.txtdoes not exist before you run the above command.If you are allowed to use
awkyou can do: