Skip to content

Instantly share code, notes, and snippets.

@cnruby
Created April 10, 2012 11:49
Show Gist options
  • Select an option

  • Save cnruby/2350816 to your computer and use it in GitHub Desktop.

Select an option

Save cnruby/2350816 to your computer and use it in GitHub Desktop.
HOW TO SPLIT FILE AND PUT THE FILES BACK TOGETHER
#把名称为<inputfilename.zip>大文件分割成小文件:
split -b2047m inputfilename.zip
#把名称以x开始小文件合并为大文件:
cat x* > completefilename
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment