diff options
author | Martin Szulecki | 2014-10-16 02:05:22 +0200 |
---|---|---|
committer | Martin Szulecki | 2014-10-16 02:05:22 +0200 |
commit | 9e10d12aed30e71aca7a4bdf7062a3b013c5f142 (patch) | |
tree | ba8a920704c5d5c455da55606ffdbaf72d7c0768 | |
parent | 10df253a95f5be6637536fc9bc2ad38681b7fccf (diff) | |
download | libideviceactivation-9e10d12aed30e71aca7a4bdf7062a3b013c5f142.tar.gz libideviceactivation-9e10d12aed30e71aca7a4bdf7062a3b013c5f142.tar.bz2 |
Add basic man page for ideviceactivation tool
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | man/Makefile.am | 2 | ||||
-rw-r--r-- | man/ideviceactivation.1 | 46 |
4 files changed, 50 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 7a25fc0..8b5a7a4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ AUTOMAKE_OPTIONS = foreign ACLOCAL_AMFLAGS = -I m4 -SUBDIRS = src include tools +SUBDIRS = src include tools man DISTCHECK_CONFIGURE_FLAGS = diff --git a/configure.ac b/configure.ac index daa9088..7445d01 100644 --- a/configure.ac +++ b/configure.ac @@ -72,6 +72,7 @@ src/Makefile include/Makefile tools/Makefile libideviceactivation-1.0.pc +man/Makefile ]) echo " diff --git a/man/Makefile.am b/man/Makefile.am new file mode 100644 index 0000000..9daee4d --- /dev/null +++ b/man/Makefile.am @@ -0,0 +1,2 @@ +man_MANS = ideviceactivation.1 +EXTRA_DIST = $(man_MANS) diff --git a/man/ideviceactivation.1 b/man/ideviceactivation.1 new file mode 100644 index 0000000..8de1d4a --- /dev/null +++ b/man/ideviceactivation.1 @@ -0,0 +1,46 @@ +.TH "ideviceactivation" 1 +.SH NAME +ideviceactivation \- Activate or deactivate an iOS device. +.SH SYNOPSIS +.B ideviceactivation +activate [OPTIONS] + +.B ideviceactivation +deactivate [OPTIONS] + +.SH DESCRIPTION + +Allows to activate and deactivate iOS devices by talking to Apple's webservice. + +If the activation process uses forms, input will be requested from the user. + +.SH OPTIONS +.TP +.B \-d, \-\-debug +Enable communication debugging. +.TP +.B \-u, \-\-udid UDID +Target specific device by its 40-digit device UDID. +.TP +.B \-h, \-\-help +Prints usage information. +.TP +.B \-s, \-\-service URL +Use activation webservice at URL instead of default. + +.SH COMMANDS +.TP +.B activate +Attempt to activate the device. +.TP +.B deactivate +Deactivates the device. + +.SH AUTHOR +This manual page was written by Martin Szulecki. + +.SH SEE ALSO + +http://www.libimobiledevice.org + +https://github.com/libimobiledevice/libideviceactivation/ |