Answers for "split large file"

0

split large file

split -C 350m --additional-suffix=.log largeFile.log
Posted by: Guest on September-10-2021
0

split large file into smaller files

$ split -l 10 data.json
Posted by: Guest on April-24-2020
0

split large files

split -b 53750k <your-file>
cat xa* > <your-file>
Posted by: Guest on May-22-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language