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 :: windows commandline zip 
Shell :: conda install pdftotext 
Shell :: git bash remove files with extension recursively 
Shell :: bash parse arguments 
Shell :: create ssh key github 
Shell :: npm windows error 
Shell :: syntax error: unexpected end of file bash 
Shell :: add stetho plugin ionic 
Shell :: helm rhel 
Shell :: protonvpn install ubuntu debian 
Shell :: debian upgrade python 
Shell :: Invalid base64 sqs 
Shell :: linux "Error: Timeout was reached" 
Shell :: git view last commits 
Shell :: install apk adb 
Shell :: mdem ubuntu ssh key 
Shell :: git delete commit 4785cd1e041 
Shell :: how to push current code to new branch git 
Shell :: cat command in linux 
Shell :: how to install phpunit 
Shell :: download bash 
Shell :: show install button for pwa react 
Shell :: open bash 
Shell :: bash for stdin 
Shell :: Authentication failed for tfs git 
Shell :: you are running create-react-app 
Shell :: linux run .sh in terminal 
Shell :: install docker-machine linux 
Shell :: remote add to github 
Shell :: @types/react-native-vector-icons 
ADD CONTENT
Topic
Content
Source link
Name
1+3 =