/usr/share/doc/refdb/refdb-manual/ch20.html is in refdb-doc 1.0.2-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Chapter 20. The Perl client module</title><link rel="stylesheet" type="text/css" href="manual.css" /><meta name="generator" content="DocBook XSL Stylesheets V1.78.1" /><link rel="home" href="index.html" title="RefDB handbook" /><link rel="up" href="pt05.html" title="Part V. Programmer's manual" /><link rel="prev" href="ch19s03.html" title="Tips and tricks" /><link rel="next" href="ch20s02.html" title="Classes and their functions" /></head><body><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 20. The Perl client module</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch19s03.html">Prev</a> </td><th width="60%" align="center">Part V. Programmer's manual</th><td width="20%" align="right"> <a accesskey="n" href="ch20s02.html">Next</a></td></tr></table><hr /></div><div class="chapter"><div class="titlepage"><div><div><h2 class="title"><a id="chapter-perl-client-module"></a>Chapter 20. The Perl client module</h2></div></div></div><div class="toc"><p><strong>Table of Contents</strong></p><dl class="toc"><dt><span class="sect1"><a href="ch20.html#idp68261072">Installation</a></span></dt><dt><span class="sect1"><a href="ch20s02.html">Classes and their functions</a></span></dt><dd><dl><dt><span class="sect2"><a href="ch20s02.html#sect-risdata">RefDBClient::Risdata</a></span></dt><dt><span class="sect2"><a href="ch20s02.html#sect-simplelist">RefDBClient::Simplelist</a></span></dt><dt><span class="sect2"><a href="ch20s02.html#sect-enigma">RefDBClient::Enigma</a></span></dt><dt><span class="sect2"><a href="ch20s02.html#sect-client">RefDBClient::Client</a></span></dt></dl></dd></dl></div><p>While the C clients shipped with RefDB are quite versatile and scriptable, you may have a desire to bypass these clients and write scripts that directly talk to the RefDB server. The separately available RefDBClient::Client Perl module implements the client/server communication necessary to run all commands offered by the C clients from a Perl script.</p><div class="sect1"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="idp68261072"></a>Installation</h2></div></div></div><p>Like with most Perl modules, the following command sequence will install the Perl module on your system</p><pre class="screen">
<code class="prompt">~$ </code>
<strong class="userinput"><code>perl Makefile.PL</code></strong>
</pre><pre class="screen">
<code class="prompt">~$ </code>
<strong class="userinput"><code>make</code></strong>
</pre><pre class="screen">
<code class="prompt">~$ </code>
<strong class="userinput"><code>make install</code></strong>
</pre><div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Note</h3><p>You need root permissions to run the last command on most systems.</p></div></div></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch19s03.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="pt05.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch20s02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Tips and tricks </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Classes and their functions</td></tr></table></div></body></html>
|