diff options
| -rw-r--r-- | man/ideviceinstaller.1 | 17 | ||||
| -rw-r--r-- | src/ideviceinstaller.c | 2 |
2 files changed, 12 insertions, 7 deletions
diff --git a/man/ideviceinstaller.1 b/man/ideviceinstaller.1 index bed39bd..51113bc 100644 --- a/man/ideviceinstaller.1 +++ b/man/ideviceinstaller.1 | |||
| @@ -1,14 +1,14 @@ | |||
| 1 | .TH "ideviceinstaller" 1 | 1 | .TH "ideviceinstaller" 1 |
| 2 | .SH NAME | 2 | .SH NAME |
| 3 | ideviceinstaller \- Manage iDevice apps | 3 | ideviceinstaller \- Manage apps on iOS devices. |
| 4 | .SH SYNOPSIS | 4 | .SH SYNOPSIS |
| 5 | .B ideviceinstaller | 5 | .B ideviceinstaller |
| 6 | [OPTIONS] | 6 | [OPTIONS] |
| 7 | 7 | ||
| 8 | .SH DESCRIPTION | 8 | .SH DESCRIPTION |
| 9 | 9 | ||
| 10 | Allows to install, upgrade, uninstall, archive, restore and | 10 | Allows to install, upgrade, uninstall, archive, restore and enumerate installed |
| 11 | enumerate installed or archived apps on iDevices. | 11 | or archived apps on iOS devices. |
| 12 | 12 | ||
| 13 | .SH OPTIONS | 13 | .SH OPTIONS |
| 14 | 14 | ||
| @@ -17,8 +17,8 @@ enumerate installed or archived apps on iDevices. | |||
| 17 | .B \-d, \-\-debug | 17 | .B \-d, \-\-debug |
| 18 | enable communication debugging. | 18 | enable communication debugging. |
| 19 | .TP | 19 | .TP |
| 20 | .B \-u, \-\-uuid UUID | 20 | .B \-u, \-\-udid UDID |
| 21 | target specific device by its 40-digit device UUID. | 21 | target specific device by its 40-digit device UDID. |
| 22 | .TP | 22 | .TP |
| 23 | .B \-h, \-\-help | 23 | .B \-h, \-\-help |
| 24 | prints usage information | 24 | prints usage information |
| @@ -47,7 +47,9 @@ print output in xml format (PList) | |||
| 47 | 47 | ||
| 48 | .TP | 48 | .TP |
| 49 | .B \-i, \-\-install ARCHIVE | 49 | .B \-i, \-\-install ARCHIVE |
| 50 | install app from a package file specified by ARCHIVE. | 50 | install app from a package file specified by ARCHIVE. ARCHIVE can also be a |
| 51 | .ipcc file for carrier bundle installation or a .app directory for developer | ||
| 52 | app installation. | ||
| 51 | 53 | ||
| 52 | .TP | 54 | .TP |
| 53 | .B \-U, \-\-uninstall APPID | 55 | .B \-U, \-\-uninstall APPID |
| @@ -85,6 +87,9 @@ uninstall the package after making an archive | |||
| 85 | \-o app_only | 87 | \-o app_only |
| 86 | archive application data only | 88 | archive application data only |
| 87 | .TP | 89 | .TP |
| 90 | \-o docs_only | ||
| 91 | archive documents (user data) only | ||
| 92 | .TP | ||
| 88 | \-o copy=PATH | 93 | \-o copy=PATH |
| 89 | copy the app archive to directory PATH when done | 94 | copy the app archive to directory PATH when done |
| 90 | .TP | 95 | .TP |
diff --git a/src/ideviceinstaller.c b/src/ideviceinstaller.c index de1f93c..dd9b5f8 100644 --- a/src/ideviceinstaller.c +++ b/src/ideviceinstaller.c | |||
| @@ -306,7 +306,7 @@ static void print_usage(int argc, char **argv) | |||
| 306 | 306 | ||
| 307 | name = strrchr(argv[0], '/'); | 307 | name = strrchr(argv[0], '/'); |
| 308 | printf("Usage: %s OPTIONS\n", (name ? name + 1 : argv[0])); | 308 | printf("Usage: %s OPTIONS\n", (name ? name + 1 : argv[0])); |
| 309 | printf("Manage apps on an iDevice.\n\n"); | 309 | printf("Manage apps on iOS devices.\n\n"); |
| 310 | printf | 310 | printf |
| 311 | (" -u, --udid UDID\tTarget specific device by its 40-digit device UDID.\n" | 311 | (" -u, --udid UDID\tTarget specific device by its 40-digit device UDID.\n" |
| 312 | " -l, --list-apps\tList apps, possible options:\n" | 312 | " -l, --list-apps\tList apps, possible options:\n" |
