Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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
Comment

split large file

split -C 350m --additional-suffix=.log largeFile.log
Comment

split large file into smaller files

$ split -l 10 data.json
Comment

split large files

split -b 53750k <your-file>
cat xa* > <your-file>
Comment

PREVIOUS NEXT
Code Example
Shell :: diff files in different repositories 
Shell :: GVfs metadata is not supported. Fallback to TeplMetadataManager. 
Shell :: add mongodb path to bashrc 
Shell :: how to uninstall htcondor 
Shell :: start a local SMTP debugging server in linux 
Shell :: ansible only disable service if installed 
Shell :: last_ack 
Shell :: normalize-audio: command not found 
Shell :: How to Install a LAMP stack on a Linode Server 
Shell :: ubuntu protetor de tela 
Shell :: shell script for aws lightsail launch 
Shell :: node-pre-gyp ERR! install response status 404 Not Found 
Shell :: apt asks for geographic location while installing docker image 
Shell :: install glibc 2.14 redhat 6 
Shell :: uninstall laptop mode tools elementary os 
Shell :: filetype exfat not configured in kernel 
Shell :: usel restart 
Shell :: how to check superwiser status in ubanti 
Shell :: check concurrent connections for linux user 
Shell :: get ssh recovery code 
Shell :: linux instal netmanager 
Shell :: ubiquiti cli set compliance 
Shell :: comment lines in nano 
Shell :: zsh command not found scp 
Shell :: unpause jobs bash 
Shell :: powershell add-type if not exists 
Shell :: sed write changes to file 
Shell :: install newest spyder version with coneda 
Shell :: polyfill download 
Shell :: Install spawn-fcgi 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =