summaryrefslogtreecommitdiffstats
path: root/docs/idevicedebug.1
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2014-06-21 01:57:01 +0200
committerGravatar Martin Szulecki2014-09-19 15:49:07 +0200
commit9732d275d00bb1200d2b6180d94814a1a7fb7696 (patch)
tree75a04e7edd9bae1beffb5fc60e4e564f6d4b8652 /docs/idevicedebug.1
parent85f3680622da0eb3529e042793d4fbf9b0d41110 (diff)
downloadlibimobiledevice-9732d275d00bb1200d2b6180d94814a1a7fb7696.tar.gz
libimobiledevice-9732d275d00bb1200d2b6180d94814a1a7fb7696.tar.bz2
Add new "idevicedebug" tool to interact with debugserver on a device
Diffstat (limited to 'docs/idevicedebug.1')
-rw-r--r--docs/idevicedebug.134
1 files changed, 34 insertions, 0 deletions
diff --git a/docs/idevicedebug.1 b/docs/idevicedebug.1
new file mode 100644
index 0000000..aa9890a
--- /dev/null
+++ b/docs/idevicedebug.1
@@ -0,0 +1,34 @@
+.TH "idevicedebug" 1
+.SH NAME
+idevicedebug \- Interact with the debugserver service of a device.
+.SH SYNOPSIS
+.B idevicedebug
+[OPTIONS] COMMAND
+
+.SH DESCRIPTION
+
+Interact with the debug service of a device. Currently the only implemented
+command is "run" and allows execution of developer apps and watch the
+stdout/stderr of the process.
+
+.SH OPTIONS
+.TP
+.B \-e, \-\-env NAME=VALUE
+set environment variable NAME to VALUE.
+.TP
+.B \-u, \-\-udid UDID
+target specific device by its 40-digit device UDID.
+.TP
+.B \-d, \-\-debug
+enable communication debugging.
+.TP
+.B \-h, \-\-help
+prints usage information.
+
+.SH COMMANDS
+.TP
+.B run BUNDLEID [ARGS...]
+run app with BUNDLEID and optional ARGS on device.
+
+.SH AUTHORS
+Martin Szulecki