OP 09 June, 2024 - 06:25 PM
(This post was last modified: 09 June, 2024 - 06:27 PM by BoDJa. Edited 2 times in total.)
a lot of people facing this issue so this is the solution easy and fast
screenshot:
first download Git bash from their official website here: https://git-scm.com/download
Use the split command in Git Bash to split a file:
for size 1000 MB = 1 GB
into files of size 500MB each: split myLargeFile.txt -b 500m
into files with 10000 lines each: split myLargeFile.txt -l 10000
myLargeFile.txt is the name your txt file so change it on command too
screenshot:
first download Git bash from their official website here: https://git-scm.com/download
Use the split command in Git Bash to split a file:
for size 1000 MB = 1 GB
into files of size 500MB each: split myLargeFile.txt -b 500m
into files with 10000 lines each: split myLargeFile.txt -l 10000
myLargeFile.txt is the name your txt file so change it on command too