mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 16:26:29 +00:00
remove csize references from docs
This commit is contained in:
parent
75ad3b8e35
commit
1393e4f391
1 changed files with 5 additions and 13 deletions
|
@ -269,12 +269,8 @@ stats
|
||||||
Number of unique chunks
|
Number of unique chunks
|
||||||
total_size
|
total_size
|
||||||
Total uncompressed size of all chunks multiplied with their reference counts
|
Total uncompressed size of all chunks multiplied with their reference counts
|
||||||
total_csize
|
|
||||||
Total compressed and encrypted size of all chunks multiplied with their reference counts
|
|
||||||
unique_size
|
unique_size
|
||||||
Uncompressed size of all chunks
|
Uncompressed size of all chunks
|
||||||
unique_csize
|
|
||||||
Compressed and encrypted size of all chunks
|
|
||||||
|
|
||||||
.. highlight: json
|
.. highlight: json
|
||||||
|
|
||||||
|
@ -285,10 +281,8 @@ Example *borg info* output::
|
||||||
"path": "/home/user/.cache/borg/0cbe6166b46627fd26b97f8831e2ca97584280a46714ef84d2b668daf8271a23",
|
"path": "/home/user/.cache/borg/0cbe6166b46627fd26b97f8831e2ca97584280a46714ef84d2b668daf8271a23",
|
||||||
"stats": {
|
"stats": {
|
||||||
"total_chunks": 511533,
|
"total_chunks": 511533,
|
||||||
"total_csize": 17948017540,
|
|
||||||
"total_size": 22635749792,
|
"total_size": 22635749792,
|
||||||
"total_unique_chunks": 54892,
|
"total_unique_chunks": 54892,
|
||||||
"unique_csize": 1920405405,
|
|
||||||
"unique_size": 2449675468
|
"unique_size": 2449675468
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -424,10 +418,8 @@ The same archive with more information (``borg info --last 1 --json``)::
|
||||||
"path": "/home/user/.cache/borg/0cbe6166b46627fd26b97f8831e2ca97584280a46714ef84d2b668daf8271a23",
|
"path": "/home/user/.cache/borg/0cbe6166b46627fd26b97f8831e2ca97584280a46714ef84d2b668daf8271a23",
|
||||||
"stats": {
|
"stats": {
|
||||||
"total_chunks": 511533,
|
"total_chunks": 511533,
|
||||||
"total_csize": 17948017540,
|
|
||||||
"total_size": 22635749792,
|
"total_size": 22635749792,
|
||||||
"total_unique_chunks": 54892,
|
"total_unique_chunks": 54892,
|
||||||
"unique_csize": 1920405405,
|
|
||||||
"unique_size": 2449675468
|
"unique_size": 2449675468
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -495,26 +487,26 @@ added:
|
||||||
|
|
||||||
removed:
|
removed:
|
||||||
See **added** property.
|
See **added** property.
|
||||||
|
|
||||||
old_mode:
|
old_mode:
|
||||||
If **type** == '*mode*', then **old_mode** and **new_mode** provide the mode and permissions changes.
|
If **type** == '*mode*', then **old_mode** and **new_mode** provide the mode and permissions changes.
|
||||||
|
|
||||||
new_mode:
|
new_mode:
|
||||||
See **old_mode** property.
|
See **old_mode** property.
|
||||||
|
|
||||||
old_user:
|
old_user:
|
||||||
If **type** == '*owner*', then **old_user**, **new_user**, **old_group** and **new_group** provide the user
|
If **type** == '*owner*', then **old_user**, **new_user**, **old_group** and **new_group** provide the user
|
||||||
and group ownership changes.
|
and group ownership changes.
|
||||||
|
|
||||||
old_group:
|
old_group:
|
||||||
See **old_user** property.
|
See **old_user** property.
|
||||||
|
|
||||||
new_user:
|
new_user:
|
||||||
See **old_user** property.
|
See **old_user** property.
|
||||||
|
|
||||||
new_group:
|
new_group:
|
||||||
See **old_user** property.
|
See **old_user** property.
|
||||||
|
|
||||||
|
|
||||||
Example (excerpt) of ``borg diff --json-lines``::
|
Example (excerpt) of ``borg diff --json-lines``::
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue