summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/idevicebackup2.120
-rw-r--r--tools/idevicebackup2.c2
2 files changed, 20 insertions, 2 deletions
diff --git a/docs/idevicebackup2.1 b/docs/idevicebackup2.1
index d21bef5..a638b8f 100644
--- a/docs/idevicebackup2.1
+++ b/docs/idevicebackup2.1
@@ -3,7 +3,7 @@
3idevicebackup2 \- Create or restore backup for iDevices running iOS4+. 3idevicebackup2 \- Create or restore backup for iDevices running iOS4+.
4.SH SYNOPSIS 4.SH SYNOPSIS
5.B idevicebackup2 5.B idevicebackup2
6[OPTIONS] CMD DIRECTORY 6[OPTIONS] CMD [CMDOPTIONS] DIRECTORY
7 7
8.SH DESCRIPTION 8.SH DESCRIPTION
9 9
@@ -28,13 +28,31 @@ create backup for the device.
28.B restore 28.B restore
29restore last backup to the device. 29restore last backup to the device.
30.TP 30.TP
31.B \t\-\-system
32restore system files, too.
33.TP
34.BI \t\-\-reboot
35reboot the system when done.
36.TP
37.B \t\-\-copy
38create a copy of backup folder before restoring.
39.TP
40.B \t\-\-settings
41restore device settings from the backup.
42.TP
31.B info 43.B info
32show details about last completed backup of device. 44show details about last completed backup of device.
33.TP 45.TP
34.B list 46.B list
35list files of last completed backup in CSV format. 47list files of last completed backup in CSV format.
48.TP
49.B unback
50unpack a completed backup in DIRECTORY/_unback_/.
36 51
37.SH AUTHORS 52.SH AUTHORS
38Martin Szulecki 53Martin Szulecki
39 54
40Nikias Bassen 55Nikias Bassen
56
57.SH SEE ALSO
58idevicebackup(1)
diff --git a/tools/idevicebackup2.c b/tools/idevicebackup2.c
index 1219601..7ddda9e 100644
--- a/tools/idevicebackup2.c
+++ b/tools/idevicebackup2.c
@@ -1061,7 +1061,7 @@ static void print_usage(int argc, char **argv)
1061 printf(" --settings\trestore device settings from the backup.\n"); 1061 printf(" --settings\trestore device settings from the backup.\n");
1062 printf(" info\t\tshow details about last completed backup of device\n"); 1062 printf(" info\t\tshow details about last completed backup of device\n");
1063 printf(" list\t\tlist files of last completed backup in CSV format\n"); 1063 printf(" list\t\tlist files of last completed backup in CSV format\n");
1064 printf(" unback\tUnpack a completed backup in DIRECTORY/_unback_/\n\n"); 1064 printf(" unback\tunpack a completed backup in DIRECTORY/_unback_/\n\n");
1065 printf("options:\n"); 1065 printf("options:\n");
1066 printf(" -d, --debug\t\tenable communication debugging\n"); 1066 printf(" -d, --debug\t\tenable communication debugging\n");
1067 printf(" -u, --uuid UUID\ttarget specific device by its 40-digit device UUID\n"); 1067 printf(" -u, --uuid UUID\ttarget specific device by its 40-digit device UUID\n");