Created
April 10, 2012 11:49
-
-
Save cnruby/2350816 to your computer and use it in GitHub Desktop.
HOW TO SPLIT FILE AND PUT THE FILES BACK TOGETHER
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
| #把名称为<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