Created
November 22, 2014 18:01
-
-
Save nguyendangminh/4e75701f6242964e044f to your computer and use it in GitHub Desktop.
Split and Join file(s) in Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Split a file into parts | |
$ split --bytes=SIZE input_file | |
# Join files together | |
$ cat file_part.* > output_file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment