Skip to content

Instantly share code, notes, and snippets.

@nguyendangminh
Created November 22, 2014 18:01
Show Gist options
  • Save nguyendangminh/4e75701f6242964e044f to your computer and use it in GitHub Desktop.
Save nguyendangminh/4e75701f6242964e044f to your computer and use it in GitHub Desktop.
Split and Join file(s) in Linux
# 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