forked from libimobiledevice/libideviceactivation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic man page for ideviceactivation tool
- Loading branch information
Showing
4 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,6 +72,7 @@ src/Makefile | |
include/Makefile | ||
tools/Makefile | ||
libideviceactivation-1.0.pc | ||
man/Makefile | ||
]) | ||
|
||
echo " | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
man_MANS = ideviceactivation.1 | ||
EXTRA_DIST = $(man_MANS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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/ |