mirror of
https://github.com/wekan/wekan.git
synced 2026-01-09 19:18:50 +01:00
Created split (markdown)
parent
9532a58945
commit
5330d1b26b
1 changed files with 26 additions and 0 deletions
26
split.md
Normal file
26
split.md
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# Split and join big files
|
||||
|
||||
For example, for copying big file using FAT32 filesystem that has limit of 4 GB per file.
|
||||
|
||||
## Split big file at Linux or Mac
|
||||
|
||||
```
|
||||
split -b 3G bigfile.zip e
|
||||
```
|
||||
Will produce files like: eaa, eab, eac, ead
|
||||
|
||||
## Join file at Linux or Mac
|
||||
|
||||
```
|
||||
cat eaa eab eac ead > bigfile.zip
|
||||
```
|
||||
|
||||
## Split file at Windows
|
||||
|
||||
https://stackoverflow.com/questions/5693795/windows-command-to-split-a-binary-file
|
||||
|
||||
## Join file at Windows
|
||||
|
||||
```
|
||||
copy /b eaa + eab + eac + ead bigfile.zip
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue