Horje
split big file into smaller parts Code Example
split big file into smaller parts
# To split file into multiple parts of 100MB each. 
# Parts will be named part_aa, part_ab, ... , part_ba, part_bb, ...
split -b 100m my-huge-file.xyz part_

# To merge back files
cat part_* > my-rebuilt-huge-file.xyz
Source: www.suse.com
split large file
split -C 350m --additional-suffix=.log largeFile.log
split large files
split -b 53750k <your-file>
cat xa* > <your-file>
split large file into smaller files
$ split -l 10 data.json




Shell

Related
docker ps with ip Code Example docker ps with ip Code Example
chkconfig httpd on Amazon Linux 2 AMI Code Example chkconfig httpd on Amazon Linux 2 AMI Code Example
how to view the files in folder linux Code Example how to view the files in folder linux Code Example
install jupyter notebbok in pip Code Example install jupyter notebbok in pip Code Example
bash for loop one line Code Example bash for loop one line Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
16