🖥️split

➡️This is a command-line reference manual for commands and command combinations that you don’t use often enough to remember it. This cheatsheet explains the split command with important options and switches using examples.

▁ ▂ ▃ ▄ ꧁ 🔴☠ COMMANDLINE-KUNGFU WITH CHEATSHEETS ☠🔴꧂▅ ▃ ▂ ▁

#                ███████╗██████╗ ██╗     ██╗████████╗
#                ██╔════╝██╔══██╗██║     ██║╚══██╔══╝
#                ███████╗██████╔╝██║     ██║   ██║   
#                ╚════██║██╔═══╝ ██║     ██║   ██║   
#                ███████║██║     ███████╗██║   ██║   
#                ╚══════╝╚═╝     ╚══════╝╚═╝   ╚═╝   
                                                    
                                                    
                                                   
# To split a large text file into smaller files of 1000 lines each:
split file.txt -l 1000

# To split a large binary file into smaller files of 10M each:
split file.txt -b 10M

# To consolidate split files into a single file:
cat x* > file.txt

#==============================#
## CMD SPLIT 
##==============================##==============================#

split -l 500 largefile splitfile- 
# Split a file into 500 line files called splitfile-xaa, splitfile-xab, etc. Useful for variety of things. Especially when some system doesn't allow more than X number of lines of input at a time.

split -b 1G verylargefile split
# Split a file called largefile into 1 gigabyte pieces called split-xaa, split-xab, split-xac ...

split -b1m binaryfile
# Split a binary file into megabyte chucks

split --lines=50 foo.txt
# Split a text file into files with 50 lines each

split -b 1G verylargefile split
# Split a file called largefile into 1 gigabyte pieces called split-xaa, split-xab, split-xac ...

split -b1m FILE
# split a binary file into megabyte 

csplit sections .txt '/^$/' {*}
# Split a file into multiple using an empty line as the split point. {*} means do this until the end.

split --lines=50 foo.txt
# Split a text file into files with 50 lines each

#==============================##==============================#
# CMD SPLIT						       #
#==============================##==============================#
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

  █║▌│║█║▌★ KALI ★ PARROT ★ DEBIAN 🔴 PENTESTING ★ HACKING ★ █║▌│║█║▌

              ██╗ ██╗ ██████╗  ██████╗ ██╗  ██╗███████╗██████╗
             ████████╗██╔══██╗██╔═══██╗╚██╗██╔╝██╔════╝██╔══██╗
             ╚██╔═██╔╝██║  ██║██║   ██║ ╚███╔╝ █████╗  ██║  ██║
             ████████╗██║  ██║██║   ██║ ██╔██╗ ██╔══╝  ██║  ██║
             ╚██╔═██╔╝██████╔╝╚██████╔╝██╔╝ ██╗███████╗██████╔╝
              ╚═╝ ╚═╝ ╚═════╝  ╚═════╝ ╚═╝  ╚═╝╚══════╝╚═════╝

               █║▌│║█║▌ WITH COMMANDLINE-KUNGFU POWER █║▌│║█║▌

░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░