summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorGravatar Julien Lavergne2011-02-08 02:44:21 +0100
committerGravatar Martin Szulecki2011-02-08 21:09:10 +0100
commit95e32e28c3e44c774c5da20fcdc371e1c314964a (patch)
tree984297daccd5cc574070aefb5d18506af665088e /docs
parent079a3201cb13729ec36a46f124e0500faa5e6771 (diff)
downloadifuse-95e32e28c3e44c774c5da20fcdc371e1c314964a.tar.gz
ifuse-95e32e28c3e44c774c5da20fcdc371e1c314964a.tar.bz2
Add a manpage
Diffstat (limited to 'docs')
-rw-r--r--docs/Makefile.am3
-rw-r--r--docs/ifuse.145
2 files changed, 48 insertions, 0 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am
new file mode 100644
index 0000000..5af0208
--- /dev/null
+++ b/docs/Makefile.am
@@ -0,0 +1,3 @@
+man_MANS = ifuse.1
+
+EXTRA_DIST = $(man_MANS)
diff --git a/docs/ifuse.1 b/docs/ifuse.1
new file mode 100644
index 0000000..27ea2d6
--- /dev/null
+++ b/docs/ifuse.1
@@ -0,0 +1,45 @@
+.TH "ifuse" 1
+.SH NAME
+ifuse \- Mount filesystem of an iPhone, iPod Touch, iPad or Apple TV.
+.SH SYNOPSIS
+.B ifuse <mount_point> [OPTIONS]
+
+.SH DESCRIPTION
+
+Mount filesystem of an iPhone, iPod Touch, iPad or Apple TV
+
+Example:
+
+ifuse /media/iPhone \-\-root
+
+This mounts the root filesystem of the first attached device on
+this computer in the directory /media/iPhone.
+
+
+.SH OPTIONS
+.TP
+.B \-o opt,[opt...]
+mount options.
+.TP
+.B \-u|\-\-uuid UUID
+mount specific device by its 40-digit device UUID.
+.TP
+.B \-h|\-\-help
+prints usage information.
+.TP
+.B \-V|\-\-version
+print version.
+.TP
+.B \-\-appid APPID
+mount 'Documents' folder of app identified by APPID.
+.TP
+.B \-\-root
+mount root file system (jailbroken device required).
+.TP
+.B \-\-debug
+enable libimobiledevice communication debugging.
+
+.SH AUTHOR
+Matt Colyer
+
+Man page written to conform with Debian by Julien Lavergne.