Forums
New posts
Articles
Product Reviews
Policies
FAQ
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Menu
Log in
Register
Install the app
Install
Forums
General Discussions
Switcher Hangout (Windows to Mac)
How to split large files ?
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="xstep" data-source="post: 460862" data-attributes="member: 11647"><p>You could use the split command via the Terminal.</p><p></p><p> split -b2047m inputfilename</p><p></p><p>will generate smaller filenames starting with the letter x and two appended sorted characters, eg: xaa, xab, xac, etc. The original file is left intact. I'd personally do this in a subdirectory. By the way, the 2047 number is the maximum you can use, so in your case you will get 2 or 3 files.</p><p></p><p>To put the files back together, in the terminal simply type</p><p></p><p> cat x* >completefilename</p><p></p><p>Version tracker listed several utilities to do this.</p><p></p><p>Note that the splitting and recombining of files generates a great deal of disk activity. This can cause severe slow down of other applications. I was having issues with a few GUI apps I had open, and possibly network issues due to working with a 6.4GB file. So, patience is a virtue here.</p></blockquote><p></p>
[QUOTE="xstep, post: 460862, member: 11647"] You could use the split command via the Terminal. split -b2047m inputfilename will generate smaller filenames starting with the letter x and two appended sorted characters, eg: xaa, xab, xac, etc. The original file is left intact. I'd personally do this in a subdirectory. By the way, the 2047 number is the maximum you can use, so in your case you will get 2 or 3 files. To put the files back together, in the terminal simply type cat x* >completefilename Version tracker listed several utilities to do this. Note that the splitting and recombining of files generates a great deal of disk activity. This can cause severe slow down of other applications. I was having issues with a few GUI apps I had open, and possibly network issues due to working with a 6.4GB file. So, patience is a virtue here. [/QUOTE]
Verification
Name this item. 🍎
Post reply
Forums
General Discussions
Switcher Hangout (Windows to Mac)
How to split large files ?
Top