Skip to content

Instantly share code, notes, and snippets.

@hitautodestruct
Created November 3, 2017 06:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hitautodestruct/bff7d6083ec45e53a36b544806d13636 to your computer and use it in GitHub Desktop.
Save hitautodestruct/bff7d6083ec45e53a36b544806d13636 to your computer and use it in GitHub Desktop.
Split files cmd linux command
# Will split files into segment.aa, segment.ab in 100 megabyte chunks
split -b 100m myfile segment.
# To reassembale the pieces
cat segment.* > myfile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment