1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!ENTITY debian "<productname>Debian GNU/Linux</productname>">
<!ENTITY hfsplus "<productname>hfsplus</productname>">
<!ENTITY hfsutils "<productname>hfsutils</productname>">
]>
<refentry>
<refentryinfo>
<address>
<email>jensen@debian.org</email>
</address>
<author>
<firstname>Jens</firstname>
<surname>Schmalzing</surname>
</author>
<date>Mar 13 2001</date>
</refentryinfo>
<refmeta>
<refentrytitle>hpcopy</refentrytitle>
<manvolnum>1</manvolnum>
</refmeta>
<refnamediv>
<refname>hpcopy</refname>
<refpurpose>copy files from an HFS+ volume</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>hpcopy</command>
<group>
<arg choice="opt"><option>-m</option></arg>
<arg choice="opt"><option>-b</option></arg>
<arg choice="opt"><option>-t</option></arg>
<arg choice="opt"><option>-r</option></arg>
<arg choice="opt"><option>-a</option></arg>
</group>
<arg choice="plain" rep="repeat"><replaceable>source-path</replaceable></arg>
<arg choice="plain"><replaceable>target-path</replaceable></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>Description</title>
<para>
<command>hpcopy</command> copies files and directories from an
HFS+ volume. If multiple files are to be copied, the target
path must be a directory.
</para>
<para>
Since Macintosh files contain two forks, which are not
representably in Unix file systems, copies use one of several
translation modes:
</para>
<variablelist>
<varlistentry>
<term><option>-m</option></term>
<listitem>
<para>
<productname>Mac Binary II</productname> is a format for
binary file transfer. Both forks of the Macintosh file
are preserved. This is the recommended mode for
transferring arbitrary Macintosh files.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-b</option></term>
<listitem>
<para>
<productname>BinHex</productname> also preserves both
forks of the Macintosh file. In addition, the encoded
file contains only ASCII characters, making it suitable
for electronic mail transmission.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-t</option></term>
<listitem>
<para>
<productname>Text</productname> copies only the data fork
of the Macintosh file, while the contents of the resource
fork are lost. In addition, this mode translates
end-of-line characters. This translation should be used
for text files.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-r</option></term>
<listitem>
<para>
<productname>Raw Data</productname> copies only the data
fork of the Macintosh file, while the contents of the
resource fork are lost.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-a</option></term>
<listitem>
<para>
<productname>Automatic</productname> mode applies a set of
predefined heuristics to determine the appropriate
translation. This is the default if no mode is specified.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>See also</title>
<para>
hfsplus(7), hpmount(1), hpls(1), hpcd(1), hprm(1), hpmkdir(1), hppwd(1), hpumount(1), hpfsck(1).
</para>
</refsect1>
<refsect1>
<title>Author</title>
<para>
This manual page was written by Jens Schmalzing
<email><jensen@debian.org></email> for &debian; using the
manual page by Klaus Halfmann
<email><halfmann@libra.de></email> that comes with the
source code and documentation from the <productname>Tech Info
Library</productname>.
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->
|