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 :: svelte install 
Shell :: count number of lines of code in git repo 
Shell :: docker interact with running container 
Shell :: pip version ubuntu 
Shell :: Installing mongodb over ubuntu 22.04 
Shell :: copy folders linux 
Shell :: stop processes on port 3000 
Shell :: git change remote branch name 
Shell :: how to install node js in ubuntu 
Shell :: raspberry pi install firefox 
Shell :: grep empty lines in a file 
Shell :: ERROR: database "backend" is being accessed by other users DETAIL: There are 3 other sessions using the database. 
Shell :: run google chrome from terminal 
Shell :: bash move a list of files 
Shell :: how to resize the window of a virtualbox machine ubuntu 
Shell :: diskpart assign letter 
Shell :: extract tar to destination 
Shell :: amazon linux install ssm agent 
Shell :: linux verzeichnis löschen 
Shell :: shell replace substring 
Shell :: systemctl status apache2.service 
Shell :: how to activate virtual environment using ubuntu 
Shell :: how to get list of users in ubuntu 
Shell :: bash single line if-else condition 
Shell :: get element by index bash 
Shell :: touch command not working in vscode 
Shell :: unable to locate a java runtime that supports javaws 
Shell :: cannot find module json-loader 
Shell :: pause in bash 
Shell :: how to upgrade react in cra 
ADD CONTENT
Topic
Content
Source link
Name
1+7 =