Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
concatenate files using CAT
Name: johnston Date: April 27, 2001 at 07:49:42 Pacific
Comment:
Hi there,
I use cat *.txt > junk.lst to concatenate all the txt file in current directory into a big file called junk.lst for later processing, my problem is that for each txt file, I want to delete the very first line (recorder) before they are put together. Is there any way to do that?
Summary: Hi all I concatenate files using cat. Each file contains only one csv data. for example, file1 100 file2 200 cat file1 file2 > newfile newfile 100 200 However, is there any way to insert identifier w...
Summary: Hello. I am trying to concatenate multiple csv files using cat, and it works. It's just that in every file besides the first one, the first line gets deleted. This is what I'm using. cat /combine/*...
Summary: Hi, I am basically making use of Anukta's code only but with a few changes, in way that i am avoiding the read of the file using cat command, rather i am using awk directly to interpret lines. Here ...