DEV Community

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

Top comments (0)