|
Home | Switchboard | Unix Administration | Red Hat | TCP/IP Networks | Neoliberalism | Toxic Managers |
(slightly skeptical) Educational society promoting "Back to basics" movement against IT overcomplexity and bastardization of classic Unix |
News | Syntax | Recommended Links | Options | Arguments | Examples |
Perl re-implemenations | cat | Humor | Etc |
|
The external split command splits a file into smaller files based on a specified number of lines or the size of the chunk. Each of those chunks are equal in size, with the exception of the last one. Each has unique suffixes (alphabetic (default) or numeric -- your choice; numeric are specified by option -d). Your original file is not changed by split.
The split command is absolutely necessary for dividing huge data file into more manageble chunks, for example for transmission
The original file can be recreated from chunks using cat command.
|
Since the extensions added by split create chunks ascending order of filenames, you can process generated chunks using shell loop.
There are some commands that cannot handle extremely large files; therefore,
you may have to split the input for these commands into more manageable blocks.
You may also wish to investigate the csplit
command, which splits files
based on context.
The split command reads input from a file or the standard input and creates multiple output files. It can be used as the last stage of the pipeline. General format:
The general format of the split command follows.
split [options] [file [prefix]
Each resulting chunk can contain either fixed amount of bites (-b) or lines (-l). The size abbreviations are K, M, G, T, P, E, Z, Y (powers of 1024), or KB, MB, GB, and so on for powers of 1000.
The size abbreviations are K, M, G, T, P, E, Z, Y (powers of 1024), or KB, MB, GB, and so on for powers of 1000. |
If you provide the prefix argument, the destination files are named prefixXX. Where XX is aa for the first file, ab for the second, and continues until the file zz. That's a total of 676 files you can generate if you divide your input into small enough sizes. When using prefix, you must use a name two characters shorter than the maximum allowed for filenames. Maximum filename length is 100; therefore, you can only use filenames of 98 characters for prefix. If you do not provide a prefix argument, the destination files are named xXX. split uses the x as a prefix.
The option -a allows to specify the length of the suffix. by default suffix is alphabetical, but it canbe changed to numberical with the option -d
You can use both prefix and suffix for the filenames:$ split -a 3 --numeric-suffixes=9 --additional-suffix=mine foo.mv SB 240K Aug 21 17:44 SB009mine 214K Aug 21 17:44 SB010mine 220K Aug 21 17:44 SB011mine
The -a
controls how many numeric digits there are. --numeric-suffixes
sets the starting point for
numbering. The default prefix is x, and you can set a different prefix by typing it after the filename.
If you wanted to split
files into roughly the same size, but preserve the line structure, you can use option -C. With -C, you can specify a maximum size.
Then the program will automatically split the files based on complete lines into chunks equal of less the specified size.
SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.
The following list describes the arguments that may be passed to the split command.
- | Causes split to read from the standard input. |
file | The name of the file split reads and divides into n or 1000 line files. |
If no file is given on the command line, split will read from the standard input. | |
prefix | The base part of the name used for all output files. An extension is added to prefix for each file created. The extension is made up of two alpha characters. The first file extension is "aa," then "ab," and so on until the original input is completely divided. |
If prefix is not specified, the output is written to a file with a base part of "x" and the normal extensions. Thus the default output filenames are xaa, xab, and so on. |
split places its output in files with an extension of two characters. The characters begin with "aa," the next file is "ab," and so on until the entire input has been split and stored in multiple files.
In this activity you use the split command to divide the standard input into separate output files. Begin at the shell prompt.
myfile
is 3,000 lines long:
split myfile
This will output three 1000-line files: xaa
, xab
,
and xac
.
split -l 500 myfile
This will output six 500-line chunks.
myfile
is a 4600M file (typical size for DVD
ISO image; you cannot write file of such size on many older filesystems such
as FAT32 with max file size: 4 GB minus 1 byte, see
Working with
File Systems):
split -b 2000m myfile iso_segment
This will output four 2000M chunks of DVD image.
Generate exactly n chunks with split command (option -n)
Let’s suppose we want to split an iso file into 4 chunk output files. Use ‘-n’ option with split command limit the number of split output files.
split -n5 linux-lite.iso
Here are some additional examples from 11 Useful split command examples for Linux-UNIX systems
iv class="entry-inner" style="padding-bottom: 0px; margin-bottom: 0px;">Prevent Zero Size Split output files with option (-e)
There can be some scenarios where we split a small file into a large number of chunk files and zero size split output files can be created in such cases, so to avoid zero size split output file, use the option ‘-e’
[root@linuxtechi ~]# split -n60 -e tuxlap.txt [root@linuxtechi ~]# ls -l x* -rw-r--r--. 1 root root 2000 Nov 11 05:34 xaa -rw-r--r--. 1 root root 2000 Nov 11 05:34 xab -rw-r--r--. 1 root root 2000 Nov 11 05:34 xac -rw-r--r--. 1 root root 2000 Nov 11 05:34 xad -rw-r--r--. 1 root root 2000 Nov 11 05:34 xae -rw-r--r--. 1 root root 2000 Nov 11 05:34 xaf -rw-r--r--. 1 root root 2000 Nov 11 05:34 xag -rw-r--r--. 1 root root 2000 Nov 11 05:34 xah ............. -rw-r--r--. 1 root root 2000 Nov 11 05:34 xce -rw-r--r--. 1 root root 2000 Nov 11 05:34 xcf -rw-r--r--. 1 root root 2000 Nov 11 05:34 xcg -rw-r--r--. 1 root root 2010 Nov 11 05:34 xch [root@linuxtechi ~]#Example:9) Create Split output files of customize suffix length (-a option)
Let’s suppose we want to split an iso file and where size of each split output file is 500MB and suffix length is to be 3. Use the following split command:
[root@linuxtechi ~]# split -b 500M linux-lite.iso -a 3 [root@linuxtechi ~]# ll total 2048124 -rw-------. 1 root root 980 Aug 12 00:11 anaconda-ks.cfg -rwx------. 1 root root 1048576000 Nov 11 03:54 linux-lite.iso -rw-r--r--. 1 root root 120010 Nov 11 04:39 tuxlap.txt -rw-r--r--. 1 root root 524288000 Nov 11 05:43 xaaa -rw-r--r--. 1 root root 524288000 Nov 11 05:43 xaab [root@linuxtechi ~]#Example: 10) Split ISO file and merge it into a single file.
Let’s suppose we have a Windows Server ISO file of size 4.2 GB and we are unable to scp this file to remote server because of its size.
To resolve such type of issues we can split the ISO into n number of pieces and will copy these pieces to remote sever and on the remote server we can merge these pieces into a single file using cat command,
[root@linuxtechi ~]# split -b 800M Windows2012r2.iso Split_IS0_View the split output files using ll command,
[root@linuxtechi ~]# ll total 8871788 -rw-------. 1 root root 980 Aug 12 00:11 anaconda-ks.cfg -rw-r--r--. 1 root root 838860800 Nov 11 06:29 Split_IS0_aa -rw-r--r--. 1 root root 838860800 Nov 11 06:29 Split_IS0_ab -rw-r--r--. 1 root root 838860800 Nov 11 06:29 Split_IS0_ac -rw-r--r--. 1 root root 838860800 Nov 11 06:29 Split_IS0_ad -rw-r--r--. 1 root root 838860800 Nov 11 06:29 Split_IS0_ae -rw-r--r--. 1 root root 347987968 Nov 11 06:29 Split_IS0_af -rw-r--r--. 1 root root 120010 Nov 11 04:39 tuxlap.txt -rwx------. 1 root root 4542291968 Nov 11 06:03 Windows2012r2.iso [root@linuxtechi ~]#Now scp these files to remote server and merge these files into a single using cat command
[root@linuxtechi ~]# cat Split_IS0_a* > Windows_Server.iso [root@linuxtechi ~]#Example: 11) Verify the Integrity of Merge file using md5sum utility
As per Example 10, once the split output files are merged into a single file, then we can check the integrity of actual & merge file with md5sum utility. Example is shown below:
[root@linuxtechi ~]# md5sum Windows2012r2.iso 5b5e08c490ad16b59b1d9fab0def883a Windows2012r2.iso [root@linuxtechi ~]# [root@linuxtechi ~]# md5sum Windows_Server.iso 5b5e08c490ad16b59b1d9fab0def883a Windows_Server.iso [root@linuxtechi ~]#
|
Switchboard | ||||
Latest | |||||
Past week | |||||
Past month |
Google matched content |
Splitting and Re-Assembling Files in Linux - Linux.com
Split Command in Linux 9 Useful Examples
UNIX - Linux split Command Examples
Split Command Examples in Unix - Linux
15 Linux Split and Join Command Examples to Manage Large Files
How to split iso or file using 'split' command in Linux – The Geek Diary
Society
Groupthink : Two Party System as Polyarchy : Corruption of Regulators : Bureaucracies : Understanding Micromanagers and Control Freaks : Toxic Managers : Harvard Mafia : Diplomatic Communication : Surviving a Bad Performance Review : Insufficient Retirement Funds as Immanent Problem of Neoliberal Regime : PseudoScience : Who Rules America : Neoliberalism : The Iron Law of Oligarchy : Libertarian Philosophy
Quotes
War and Peace : Skeptical Finance : John Kenneth Galbraith :Talleyrand : Oscar Wilde : Otto Von Bismarck : Keynes : George Carlin : Skeptics : Propaganda : SE quotes : Language Design and Programming Quotes : Random IT-related quotes : Somerset Maugham : Marcus Aurelius : Kurt Vonnegut : Eric Hoffer : Winston Churchill : Napoleon Bonaparte : Ambrose Bierce : Bernard Shaw : Mark Twain Quotes
Bulletin:
Vol 25, No.12 (December, 2013) Rational Fools vs. Efficient Crooks The efficient markets hypothesis : Political Skeptic Bulletin, 2013 : Unemployment Bulletin, 2010 : Vol 23, No.10 (October, 2011) An observation about corporate security departments : Slightly Skeptical Euromaydan Chronicles, June 2014 : Greenspan legacy bulletin, 2008 : Vol 25, No.10 (October, 2013) Cryptolocker Trojan (Win32/Crilock.A) : Vol 25, No.08 (August, 2013) Cloud providers as intelligence collection hubs : Financial Humor Bulletin, 2010 : Inequality Bulletin, 2009 : Financial Humor Bulletin, 2008 : Copyleft Problems Bulletin, 2004 : Financial Humor Bulletin, 2011 : Energy Bulletin, 2010 : Malware Protection Bulletin, 2010 : Vol 26, No.1 (January, 2013) Object-Oriented Cult : Political Skeptic Bulletin, 2011 : Vol 23, No.11 (November, 2011) Softpanorama classification of sysadmin horror stories : Vol 25, No.05 (May, 2013) Corporate bullshit as a communication method : Vol 25, No.06 (June, 2013) A Note on the Relationship of Brooks Law and Conway Law
History:
Fifty glorious years (1950-2000): the triumph of the US computer engineering : Donald Knuth : TAoCP and its Influence of Computer Science : Richard Stallman : Linus Torvalds : Larry Wall : John K. Ousterhout : CTSS : Multix OS Unix History : Unix shell history : VI editor : History of pipes concept : Solaris : MS DOS : Programming Languages History : PL/1 : Simula 67 : C : History of GCC development : Scripting Languages : Perl history : OS History : Mail : DNS : SSH : CPU Instruction Sets : SPARC systems 1987-2006 : Norton Commander : Norton Utilities : Norton Ghost : Frontpage history : Malware Defense History : GNU Screen : OSS early history
Classic books:
The Peter Principle : Parkinson Law : 1984 : The Mythical Man-Month : How to Solve It by George Polya : The Art of Computer Programming : The Elements of Programming Style : The Unix Hater’s Handbook : The Jargon file : The True Believer : Programming Pearls : The Good Soldier Svejk : The Power Elite
Most popular humor pages:
Manifest of the Softpanorama IT Slacker Society : Ten Commandments of the IT Slackers Society : Computer Humor Collection : BSD Logo Story : The Cuckoo's Egg : IT Slang : C++ Humor : ARE YOU A BBS ADDICT? : The Perl Purity Test : Object oriented programmers of all nations : Financial Humor : Financial Humor Bulletin, 2008 : Financial Humor Bulletin, 2010 : The Most Comprehensive Collection of Editor-related Humor : Programming Language Humor : Goldman Sachs related humor : Greenspan humor : C Humor : Scripting Humor : Real Programmers Humor : Web Humor : GPL-related Humor : OFM Humor : Politically Incorrect Humor : IDS Humor : "Linux Sucks" Humor : Russian Musical Humor : Best Russian Programmer Humor : Microsoft plans to buy Catholic Church : Richard Stallman Related Humor : Admin Humor : Perl-related Humor : Linus Torvalds Related humor : PseudoScience Related Humor : Networking Humor : Shell Humor : Financial Humor Bulletin, 2011 : Financial Humor Bulletin, 2012 : Financial Humor Bulletin, 2013 : Java Humor : Software Engineering Humor : Sun Solaris Related Humor : Education Humor : IBM Humor : Assembler-related Humor : VIM Humor : Computer Viruses Humor : Bright tomorrow is rescheduled to a day after tomorrow : Classic Computer Humor
The Last but not Least Technology is dominated by two types of people: those who understand what they do not manage and those who manage what they do not understand ~Archibald Putt. Ph.D
Copyright © 1996-2021 by Softpanorama Society. www.softpanorama.org was initially created as a service to the (now defunct) UN Sustainable Development Networking Programme (SDNP) without any remuneration. This document is an industrial compilation designed and created exclusively for educational use and is distributed under the Softpanorama Content License. Original materials copyright belong to respective owners. Quotes are made for educational purposes only in compliance with the fair use doctrine.
FAIR USE NOTICE This site contains copyrighted material the use of which has not always been specifically authorized by the copyright owner. We are making such material available to advance understanding of computer science, IT technology, economic, scientific, and social issues. We believe this constitutes a 'fair use' of any such copyrighted material as provided by section 107 of the US Copyright Law according to which such material can be distributed without profit exclusively for research and educational purposes.
This is a Spartan WHYFF (We Help You For Free) site written by people for whom English is not a native language. Grammar and spelling errors should be expected. The site contain some broken links as it develops like a living tree...
|
You can use PayPal to to buy a cup of coffee for authors of this site |
Disclaimer:
The statements, views and opinions presented on this web page are those of the author (or referenced source) and are not endorsed by, nor do they necessarily reflect, the opinions of the Softpanorama society. We do not warrant the correctness of the information provided or its fitness for any purpose. The site uses AdSense so you need to be aware of Google privacy policy. You you do not want to be tracked by Google please disable Javascript for this site. This site is perfectly usable without Javascript.
Last modified: December 18, 2019