In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/01 Report--
Editor to share with you how to merge and sort files on Linux, I believe most people do not know much about it, so share this article for your reference, I hope you can learn a lot after reading this article, let's go to know it!
Use cat
If you only want to put a set of files into a single file, then the cat command is an easy choice. All you have to do is type cat and list the files on the command line in the order you want them in the merge files. Redirect the output of the command to the file you want to create. If a file with the specified name already exists, the file will be overwritten. For example:
$cat firstfile secondfile thirdfile > newfile
If you want to add the contents of a series of files to an existing file instead of overwriting it, simply change > to > >.
$cat firstfile secondfile thirdfile > > updated_file
If the files you want to merge follow some convenient naming conventions, the task may be easier. If you can specify all file names using regular expressions, you don't have to list all files. For example, if the files all end in file, as shown above, you can do the following:
$cat * file > allfiles
Note that the above command adds the contents of the file alphabetically. On Linux, a file named filea will come before the file named fileA, but will come after file7. After all, when dealing with alphanumeric sequences, we need to consider not only ABCDE, but also 0123456789aAbBcCdDeE. You can use commands such as ls * file to see the order of files before merging.
Note: first make sure that your command contains all the files needed in the merge file, not any other files, especially if you use wildcards such as *. Don't forget that the files used for the merge will still exist separately, and you may want to delete them after confirming the merge.
Merge files by time limit
If you want to merge files based on the time period of each file instead of the file name, use the following command:
$for file in `ls-tr myfile.* `; do cat $file > > BigFile.$$; done
Using the-tr option (t = time, r = reverse) produces a list of files in the earliest order first. For example, this is useful if you want to keep a log of some activities and want to add content in the order in which the activities are performed.
The $$in the above command represents the process ID when the command is run. It is not necessary to use this feature, but it is almost impossible to inadvertently add to an existing file instead of creating a new one. If you use $$, the resulting file might look like this:
$ls-l BigFile.*-rw-rw-r-- 1 justme justme 931725 Aug 6 12:36 BigFile.582914
Merge and sort files
Linux provides some interesting ways to sort the contents of files before or after the merge.
1. Sort the content alphabetically
If you want to sort the contents of the merged file, you can sort the overall contents using the following command:
$cat myfile.1 myfile.2 myfile.3 | sort > newfile
If you want to group content by file, sort each file using the following command, and then add it to the new file:
$for file in `ls myfile.? `; do sort $file > > newfile; done
two。 Sort files digitally
To sort the contents of a file numerically, use the-n option in sort. This option is useful only if the lines in the file begin with a number. Remember, in the default order, 02 will be less than 1. Use the-n option when you want to make sure that rows are sorted by numbers.
$cat myfile.1 myfile.2 myfile.3 | sort-n > xyz
If the lines in the file begin with a date format such as 2020-11-03 or 2020-11-03, the-n option also allows you to sort the content by date. Sorting dates in other formats will be tricky and will require more complex commands.
Use paste
The paste command allows you to connect the contents of the file line by line. When you use this command, the first line of the merged file contains the first line of each file you want to merge. The following is an example, where I use uppercase letters to make it easier to see the source of the line:
$cat file.an An one A two A three $paste file.a file.b file.c An one B one C one A two B two C two A three B three C thee B four C four C five
Redirect the output to another file to save it:
$paste file.a file.b file.c > merged_content
Alternatively, you can merge the contents of each file on the same line and paste the files together. This requires the use of the-s (sequence) option. Notice how the output this time displays the contents of each file:
$paste-s file.a file.b file.c An one A two A three B one B two B three B four C one C two C thee C four C five
Use join
Another command to merge files is join. The join command allows you to merge the contents of multiple files based on a common field. For example, you might have a file that contains the phone numbers of a group of colleagues, while the other contains the e-mail addresses of colleagues, both listed by personal name. You can use join to create a file that contains your phone and email address.
An important limitation is that the lines of the file must be in the same order and include fields for connections in each file.
This is an example command:
Join phone_numbers email_addresses Sandra 555-456-1234 bugfarm@gmail.com Pedro 555-540-5405 John 555-333-1234 john_doe@gmail.com Nemo 555-123-4567 cutie@fish.com and above are all the contents of this article "how to merge and sort files on Linux". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.