Split: Difference between revisions
Jump to navigation
Jump to search
Created page with "{{lowercase title}} Split a big file into equal sized pieces: <pre> split -b50G -d my_big_file.tgz temp_name </pre> This gives 50G chunks named temp_name01, temp_name02, etc...." |
No edit summary |
||
Line 4: | Line 4: | ||
split -b50G -d my_big_file.tgz temp_name | split -b50G -d my_big_file.tgz temp_name | ||
</pre> | </pre> | ||
This | This yields 50G chunks named temp_name01, temp_name02, etc. | ||
Latest revision as of 15:30, 17 March 2015
Split a big file into equal sized pieces:
split -b50G -d my_big_file.tgz temp_name
This yields 50G chunks named temp_name01, temp_name02, etc.
Join the pieces back together
cat temp_name* > my_big_file.tgz