Detailed explanation of using split command to split Linux files

Detailed explanation of using split command to split Linux files

A few simple Linux commands let you split and reassemble files as needed to fit within storage or email attachment size limitations.

The Linux system provides a very easy-to-use command to split files. You may want to do this before uploading a file to a storage site that limits the size of the file or before attaching it to an email. To split a file into multiple file chunks, just use the split command.

$ split bigfile

By default, the split command uses a very simple naming scheme. The file chunks will be named xaa, xab, xac, etc., and, presumably, if you split a large enough file, you might even get chunks named xza and xzz.

This command will run without any feedback unless you ask it to. However, if you want to see feedback as the file chunks are created, use the --verbose option.

$ split –-verbose bigfile
creating file 'xaa'
creating file 'xab'
creating file 'xac'

You can also give the files a name prefix. For example, to split your original file and name it bigfile.aa, bigfile.ab, etc., you can add the prefix to the end of the split command, like this:

$ split –-verbose bigfile bigfile.
creating file 'bigfile.aa'
creating file 'bigfile.ab'
creating file 'bigfile.ac'

Note that a dot is added to the end of the prefix shown in the above command. Otherwise, the file will be named something like bigfileaa instead of bigfile.aa.

Please note that the split command does not delete your original file, it just creates chunks of it. If you want to specify the file block size, you can add it to the command using the -b option. For example:

$ split -b100M bigfile

The file size can be KB, MB, GB, and the maximum can be YB! Just use the appropriate letters K, M, G, T, P, E, Z, and Y.

If you want to split the file based on the number of lines in each block rather than the number of bytes, you can use the -l (lines) option. In this example, each file will have 1000 lines, although the last file may have fewer lines.

$ split --verbose -l1000 logfile log.
creating file 'log.aa'
creating file 'log.ab'
creating file 'log.ac'
creating file 'log.ad'
creating file 'log.ae'
creating file 'log.af'
creating file 'log.ag'
creating file 'log.ah'
creating file 'log.ai'
creating file 'log.aj'

If you need to reassemble the files on the remote site, you can easily do this using the cat command as follows:

$ cat x?? > original.file
$ cat log.?? > original.file

The split and combine commands shown above are suitable for both binary and text files. In this example, we split the zip binary file into 50KB chunks, then reassembled them using cat, and then compared the reassembled file with the original file. The diff command verifies that files are identical.

$ split --verbose -b50K zip zip.
creating file 'zip.aa'
creating file 'zip.ab'
creating file 'zip.ac'
creating file 'zip.ad'
creating file 'zip.ae'
$ cat zip.a? > zip.new
$ diff zip zip.new
$ <== no output = no difference

The only thing I would caution is that if you use split a lot and use the default naming, some chunks may overwrite other chunks, even more than you expected, because some were split earlier.

Summarize

The above is the editor's introduction to using the split command to split Linux files. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • How to split files using csplit command in Linux
  • Detailed explanation of splitting large files and merging files with cat in Linux
  • Detailed explanation of Linux split command
  • Summary of the usage of split function in awk in Linux

<<:  How to find out uncommitted transaction information in MySQL

>>:  The complete code of the uniapp packaged applet radar chart component

Recommend

Several situations where div is covered by iframe and their solutions

Similar structures: Copy code The code is as foll...

MySQL master-slave replication principle and points to note

Written in front I have been writing a special to...

Analyze the usage and principles of Vue's provide and inject

First, let's talk about why we use provide/in...

Sample code for converting video using ffmpeg command line

Before starting the main text of this article, yo...

Vue3 realizes the image magnifying glass effect

This article example shares the specific code of ...

Sharing of web color contrast and harmony techniques

Color contrast and harmony In contrasting conditi...

MySQL query optimization: a table optimization solution for 1 million data

1. Query speed of two query engines (myIsam engin...

What does the legendary VUE syntax sugar do?

Table of contents 1. What is syntactic sugar? 2. ...

Four ways to combine CSS and HTML

(1) Each HTML tag has an attribute style, which c...

How to write elegant JS code

Table of contents variable Use meaningful and pro...

Introduction to cloud native technology kubernetes (K8S)

Table of contents 01 What is Kubernetes? 02 The d...

Implementation example of Nginx+Tomcat load balancing cluster

Table of contents introduction 1. Case Overview 2...

How to change the dot in the WeChat applet swiper-dot into a slider

Table of contents background Target Effect Ideas ...

100 ways to change the color of an image using CSS (worth collecting)

Preface “When it comes to image processing, we of...