1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-26 01:37:20 +00:00
borg/docs/usage/extract.rst
2022-06-25 21:58:19 +02:00

23 lines
680 B
ReStructuredText

.. include:: extract.rst.inc
Examples
~~~~~~~~
::
# Extract entire archive
$ borg extract my-files
# Extract entire archive and list files while processing
$ borg extract --list my-files
# Verify whether an archive could be successfully extracted, but do not write files to disk
$ borg extract --dry-run my-files
# Extract the "src" directory
$ borg extract my-files home/USERNAME/src
# Extract the "src" directory but exclude object files
$ borg extract my-files home/USERNAME/src --exclude '*.o'
# Restore a raw device (must not be active/in use/mounted at that time)
$ borg extract --stdout my-sdx | dd of=/dev/sdx bs=10M