DEV Community

Cover image for MAC OS X: How to split large file into pieces?
YURIIDE
YURIIDE

Posted on • Updated on

MAC OS X: How to split large file into pieces?

OS X includes a command line tool called split. See man split or https://ss64.com/osx/split.html for all the details.

You can call split using the Terminal.app and the command:

split -b 5m bigfish.txt
Enter fullscreen mode Exit fullscreen mode

To split text, use web tool: https://qit.tools/text/split/.

Top comments (0)