Hello everyone!
My text file is getting larger and larger every day. So I need to split it up into smaller files.
Text file with size 10 MB: (There is no line break between the people.)
=========================================================
Each text file separated like:
1LINE.txt
2LINE.txt
3LINE.txt
...
...
99999LINE.txt
I'm a total newbie. I don't know how to do this.
Please help me.
My text file is getting larger and larger every day. So I need to split it up into smaller files.
Text file with size 10 MB: (There is no line break between the people.)
Code: Select all
1LINE_jimmy_home http://jimmy.blogspot.com/
1LINE_jimmy_company https://jimmy.company.blogspot.com/
1LINE_jimmy_twi https://twtter.jimmy.com/
2LINE_Sam_home http://sam.home.com/index.php
2LINE_Sam_blog http://sam.blog.com
3LINE_Jane_work http://jane.company.net/floor2
3LINE_Jane_twitter http://twitter.jane.com/
...
...
...
99999LINE_jenna_home http://twitter.jenna.com/
99999LINE_jenna_work http://workjenna.com/
Each text file separated like:
1LINE.txt
Code: Select all
1LINE_jimmy_home http://jimmy.blogspot.com/
1LINE_jimmy_company https://jimmy.company.blogspot.com/
1LINE_jimmy_twi https://twtter.jimmy.com/
Code: Select all
2LINE_Sam_home http://sam.home.com/index.php
2LINE_Sam_blog http://sam.blog.com
Code: Select all
3LINE_Jane_work http://jane.company.net/floor2
3LINE_Jane_twitter http://twitter.jane.com/
...
99999LINE.txt
Code: Select all
99999LINE_jenna_home http://twitter.jenna.com/
99999LINE_jenna_work http://workjenna.com/
Please help me.