https://github.com/bhallstein/rsplit
Split big files into smaller files
https://github.com/bhallstein/rsplit
Last synced: over 1 year ago
JSON representation
Split big files into smaller files
- Host: GitHub
- URL: https://github.com/bhallstein/rsplit
- Owner: bhallstein
- Created: 2020-05-05T19:18:22.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-05T19:18:40.000Z (over 6 years ago)
- Last Synced: 2025-01-21T07:42:44.145Z (over 1 year ago)
- Language: Ruby
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.txt
Awesome Lists containing this project
README
rsplit
Split a file into 250MB chunks:
cat big_file | rsplit.rb 250 big_file_part_
=> big_file_part_01,
big_file_part_02,
...
Re-split into 1GB chunks:
cat big_file_part* | rsplit.rb 1000 big_file_in_1gchunks_
-- BH, Dec 2014