Your Webhosting Questions
Answered by the Webhosting Experts
Tags
...

How to split the large files in to small files?

There is simple syntax given below for splitting large file into several small size files.

Fire the following command from shell.

$ split –bytes=1m /path/to/large/file
/path/to/output/file/prefix

Just simple.

You have done it. You can change the output file size by changing -bytes =1m to any desired value You can use b, k, or m. b represent bytes, k represent kilobytes, m represent megabytes.

To restore the original file you can use cat command.

cat prefix* > NEWFILENAME.

Need More Personalized Help?

If you have any further issues, questions, or would like some assistance checking on this or anything else, please reach out to us from your my.hivelocity.net account and provide your server credentials within the encrypted field for the best possible security and support.

If you are unable to reach your my.hivelocity.net account or if you are on the go, please reach out from your valid my.hivelocity.net account email to us here at: [email protected]. We are also available to you through our phone and live chat system 24/7/365.

Tags +