Le 04/07/2016 à 19:19, rbo...@apache.org a écrit :
Author: rbowen
Date: Mon Jul 4 17:19:08 2016
New Revision: 1751351
URL: http://svn.apache.org/viewvc?rev=1751351&view=rev
Log:
Give an example of converting a password file from one format to the
other.
Modified:
httpd/httpd/trunk/docs/manual/programs/htdbm.html.en
httpd/httpd/trunk/docs/manual/programs/htdbm.xml
Modified: httpd/httpd/trunk/docs/manual/programs/htdbm.html.en
URL:
http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/programs/htdbm.html.en?rev=1751351&r1=1751350&r2=1751351&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/programs/htdbm.html.en (original)
+++ httpd/httpd/trunk/docs/manual/programs/htdbm.html.en Mon Jul 4 17:19:08
2016
@@ -279,6 +279,20 @@
<p>Encrypts the password from the command line (<code>Pwd4Steve</code>)
using the MD5 algorithm, and stores it in the specified file.</p>
+
+ <p>To convert an existing text file <code>htpasswd</code>-generated
+ password file to a <code>dbm</code> file, use <code>awk</code> to
+ feed each line of that file into <code>htdbm</code>:</p>
+
+ <div class="example"><p><code>
+ htdbm -cbp passwords.dbm bogus bogus
+ awk ‘BEGIN { FS=”:” }; {system (“htdbm -bp passwords.dbm
” $1 ” ” $2)}’ passwords
+ htdbm -x bogus
+ </code></p></div>
+
+ <p>The first line creates a new password database with a temporary
+ placeholder entry, and the thrid line removes that placeholder.</p>
+
</div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif"
/></a></div>
<div class="section">
<h2><a name="security" id="security">Security Considerations</a></h2>
Modified: httpd/httpd/trunk/docs/manual/programs/htdbm.xml
URL:
http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/programs/htdbm.xml?rev=1751351&r1=1751350&r2=1751351&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/programs/htdbm.xml (original)
+++ httpd/httpd/trunk/docs/manual/programs/htdbm.xml Mon Jul 4 17:19:08 2016
@@ -272,6 +272,20 @@
<p>Encrypts the password from the command line (<code>Pwd4Steve</code>)
using the MD5 algorithm, and stores it in the specified file.</p>
+
+ <p>To convert an existing text file <code>htpasswd</code>-generated
+ password file to a <code>dbm</code> file, use <code>awk</code> to
+ feed each line of that file into <code>htdbm</code>:</p>
+
+ <example>
+ htdbm -cbp passwords.dbm bogus bogus
+ awk âBEGIN { FS=â:â }; {system (âhtdbm -bp passwords.dbm â $1
â â $2)}â passwords
+ htdbm -x bogus
+ </example>
+
+ <p>The first line creates a new password database with a temporary
+ placeholder entry, and the thrid line removes that placeholder.</p>
+
</section>
<section id="security"><title>Security Considerations</title>
The line with the awk command has characters which seem not to be
ISO-8859-1 compliant.
Xalan seems to be just fine with it, but Saxon complains about it.
CJ
---------------------------------------------------------------------
To unsubscribe, e-mail: docs-unsubscr...@httpd.apache.org
For additional commands, e-mail: docs-h...@httpd.apache.org