Skip to main content
Support is Offline
Today is our off day. We are taking some rest and will come back stronger tomorrow
Official support hours
Monday To Friday
From 09:00 To 17:30
  Tuesday, 26 May 2020
  1 Replies
  7.7K Visits
0
Votes
Undo
Can I use Kutools to split 1 word file into 300 subfiles, where I assign the name of the file by using the titel of a paragraph or another field?
3 years ago
·
#2146
0
Votes
Undo
You can use the linux bash core utility split
split -b 1M -d  file.txt file 
Note that M or MB both are OK but size is different. MB is 1000 * 1000, M is 1024^2
If you want to separate by lines you can use -l parameter.
UPDATE
a=(`wc -l yourfile`) ; lines=`echo $(($a/12)) | bc -l` ; split -l $lines -d  file.txt file
Another solution as suggested by Kirill, you can do something like the following
split -n l/12 file.txt
Note that is l not one, split -n has a few options, like N, k/N, l/k/N, r/N, r/k/N.
  • Page :
  • 1
There are no replies made for this post yet.