User Tools

Site Tools


ubuntu:file:split_big_files

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
ubuntu:file:split_big_files [2020/07/15 09:30] – external edit 127.0.0.1ubuntu:file:split_big_files [2022/06/13 11:37] (current) – removed peter
Line 1: Line 1:
-====== Ubuntu - File - Split big files ====== 
- 
-To split big files, the **split** command can be used.  
- 
-For example to split a 400MB file named bigfile into 100MB chunk files named smallfile0* 
- 
-<code bash> 
-split -b 100M -d --verbose bigfile smallfile 
- 
-creating file 'smallfile00' 
-creating file 'smallfile01' 
-creating file 'smallfile02' 
-creating file 'smallfile03' 
-</code> 
- 
-where: 
- 
-  * **-b** is for byte size. 
-  * **-d** is for numeric suffixes. 
-  * **smallfile** is the prefix to be used. 
- 
-The output is: 
- 
-<code bash> 
-ls 
- 
-bigfile smallfile00 smallfile01 smallfile02 smallfile03 
-</code> 
- 
-To recover back the splitted files into a file named newbigfile: 
- 
-<code bash> 
-cat smallfile0* > newbigfile 
-</code> 
  
ubuntu/file/split_big_files.1594805433.txt.gz · Last modified: 2020/07/15 09:30 by 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki