diff options
| author | 2010-04-02 13:33:46 +0200 | |
|---|---|---|
| committer | 2010-04-02 13:33:46 +0200 | |
| commit | 308e8cd105d210db390e33a5fe77a98e8fa408c7 (patch) | |
| tree | 11bf7f1519b963b1d7ecb3ee9ef179b59b654bec | |
| parent | ec433d15c38649e6ae06d686579fd5025d96f004 (diff) | |
| download | ideviceinstaller-308e8cd105d210db390e33a5fe77a98e8fa408c7.tar.gz ideviceinstaller-308e8cd105d210db390e33a5fe77a98e8fa408c7.tar.bz2 | |
Add basic manpage
| -rw-r--r-- | Makefile.am | 2 | ||||
| -rw-r--r-- | configure.ac | 1 | ||||
| -rw-r--r-- | man/Makefile.am | 2 | ||||
| -rw-r--r-- | man/ideviceinstaller.1 | 101 |
4 files changed, 105 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 4c3e7c3..7c28996 100644 --- a/Makefile.am +++ b/Makefile.am | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | AUTOMAKE_OPTIONS = foreign | 1 | AUTOMAKE_OPTIONS = foreign |
| 2 | ACLOCAL_AMFLAGS = -I m4 | 2 | ACLOCAL_AMFLAGS = -I m4 |
| 3 | SUBDIRS = src | 3 | SUBDIRS = src man |
| 4 | 4 | ||
diff --git a/configure.ac b/configure.ac index af7d0ac..ab3945b 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -48,5 +48,6 @@ m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) | |||
| 48 | AC_OUTPUT([ | 48 | AC_OUTPUT([ |
| 49 | Makefile | 49 | Makefile |
| 50 | src/Makefile | 50 | src/Makefile |
| 51 | man/Makefile | ||
| 51 | ]) | 52 | ]) |
| 52 | 53 | ||
diff --git a/man/Makefile.am b/man/Makefile.am new file mode 100644 index 0000000..4a1d31f --- /dev/null +++ b/man/Makefile.am | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | man_MANS = ideviceinstaller.1 | ||
| 2 | EXTRA_DIST = $(man_MANS) | ||
diff --git a/man/ideviceinstaller.1 b/man/ideviceinstaller.1 new file mode 100644 index 0000000..d601d71 --- /dev/null +++ b/man/ideviceinstaller.1 | |||
| @@ -0,0 +1,101 @@ | |||
| 1 | .TH "ideviceinstaller" 1 | ||
| 2 | .SH NAME | ||
| 3 | ideviceinstaller \- Manage iPhone/iPod Touch apps | ||
| 4 | .SH SYNOPSIS | ||
| 5 | .B ideviceinstaller | ||
| 6 | [OPTIONS] | ||
| 7 | |||
| 8 | .SH DESCRIPTION | ||
| 9 | |||
| 10 | Allows to install, upgrade, uninstall, archive, restore and | ||
| 11 | enumerate installed or archived apps on iPhone/iPod Touch devices. | ||
| 12 | |||
| 13 | .SH OPTIONS | ||
| 14 | |||
| 15 | .SS General options: | ||
| 16 | .TP | ||
| 17 | .B \-D, \-\-debug | ||
| 18 | enable communication debugging. | ||
| 19 | .TP | ||
| 20 | .B \-u, \-\-uuid UUID | ||
| 21 | target specific device by its 40-digit device UUID. | ||
| 22 | .TP | ||
| 23 | .B \-h, \-\-help | ||
| 24 | prints usage information | ||
| 25 | |||
| 26 | .SS Commands: | ||
| 27 | .TP | ||
| 28 | .B \-l, \-\-list-apps | ||
| 29 | list apps installed on the device. | ||
| 30 | |||
| 31 | .RS | ||
| 32 | .B Additional options: | ||
| 33 | .TP | ||
| 34 | -o list_user | ||
| 35 | list user apps only (apps installed by the user) | ||
| 36 | .B This is the default. | ||
| 37 | .TP | ||
| 38 | -o list_system | ||
| 39 | list system apps only (apps available from the system firmware) | ||
| 40 | .TP | ||
| 41 | -o list_all | ||
| 42 | list all types of apps | ||
| 43 | .TP | ||
| 44 | -o xml | ||
| 45 | print output in xml format (PList) | ||
| 46 | .RE | ||
| 47 | |||
| 48 | .TP | ||
| 49 | .B \-i, \-\-install ARCHIVE | ||
| 50 | install app from a package file specified by ARCHIVE. | ||
| 51 | |||
| 52 | .TP | ||
| 53 | .B \-i, \-\-uninstall APPID | ||
| 54 | uninstall app specified by APPID. | ||
| 55 | |||
| 56 | .TP | ||
| 57 | .B \-g, \-\-upgrade APPID | ||
| 58 | upgrade app specified by APPID. | ||
| 59 | |||
| 60 | .TP | ||
| 61 | .B \-r, \-\-restore APPID | ||
| 62 | restore archived app specified by APPID. | ||
| 63 | |||
| 64 | .TP | ||
| 65 | .B \-L, \-\-list-archives | ||
| 66 | list archived applications on the device. | ||
| 67 | |||
| 68 | .RS | ||
| 69 | .B Additional options: | ||
| 70 | .TP | ||
| 71 | -o xml | ||
| 72 | print output in xml format (PList) | ||
| 73 | .RE | ||
| 74 | |||
| 75 | .TP | ||
| 76 | .B \-a, \-\-archive APPID | ||
| 77 | archive app specified by APPID. | ||
| 78 | |||
| 79 | .RS | ||
| 80 | .B Additional options: | ||
| 81 | .TP | ||
| 82 | -o uninstall | ||
| 83 | uninstall the package after making an archive | ||
| 84 | .TP | ||
| 85 | -o app_only | ||
| 86 | archive application data only | ||
| 87 | .TP | ||
| 88 | -o copy=PATH | ||
| 89 | copy the app archive to directory PATH when done | ||
| 90 | .TP | ||
| 91 | -o remove | ||
| 92 | only valid when copy=PATH is used: remove after copy | ||
| 93 | .RE | ||
| 94 | |||
| 95 | .TP | ||
| 96 | .B \-R, \-\-remove-archive APPID | ||
| 97 | remove app archive specified by APPID. | ||
| 98 | |||
| 99 | .SH AUTHOR | ||
| 100 | This manual page was written by Martin Szulecki. | ||
| 101 | |||
