diff options
author | DJ Lucas <dj@linuxfromscratch.org> | 2016-02-13 08:41:08 +0000 |
---|---|---|
committer | DJ Lucas <dj@linuxfromscratch.org> | 2016-02-13 08:41:08 +0000 |
commit | d4a090e9a8406e5ba83d39195094923ed8344444 (patch) | |
tree | f5e24e3d1162c36f8c37c8694043d2afb9b13ec2 | |
parent | de7a8b33b6fe075e9fa2b0b0e4f06b04b8a1e06a (diff) |
Add description for base32 in coreutils, and minor cleanup - wrap text at 80 chars.
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd@11007 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 3 | ||||
-rw-r--r-- | chapter06/coreutils.xml | 36 |
2 files changed, 27 insertions, 12 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 9487c7923..6f77f5935 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -40,6 +40,9 @@ <para>2016-02-13</para> <itemizedlist> <listitem> + <para>[dj] - Add description for base32 in coreutils.</para> + </listitem> + <listitem> <para>[dj] - Updated to systemd-229.</para> </listitem> </itemizedlist> diff --git a/chapter06/coreutils.xml b/chapter06/coreutils.xml index 8003cd053..ff1bd7967 100644 --- a/chapter06/coreutils.xml +++ b/chapter06/coreutils.xml @@ -154,16 +154,17 @@ sed -i s/\"1\"/\"8\"/1 /usr/share/man/man8/chroot.8</userinput></screen> <segtitle>Installed directory</segtitle> <seglistitem> - <seg>[, base64, basename, cat, chcon, chgrp, chmod, chown, chroot, cksum, - comm, cp, csplit, cut, date, dd, df, dir, dircolors, dirname, du, echo, - env, expand, expr, factor, false, fmt, fold, groups, head, hostid, - id, install, join, link, ln, logname, ls, md5sum, mkdir, mkfifo, mknod, - mktemp, mv, nice, nl, nohup, nproc, numfmt, od, paste, pathchk, pinky, pr, - printenv, printf, ptx, pwd, readlink, realpath, rm, rmdir, runcon, seq, - sha1sum, sha224sum, sha256sum, sha384sum, sha512sum, shred, shuf, sleep, - sort, split, stat, stdbuf, stty, sum, sync, tac, tail, tee, test, - timeout, touch, tr, true, truncate, tsort, tty, uname, unexpand, uniq, - unlink, users, vdir, wc, who, whoami, and yes</seg> + <seg>[, base32, base64, basename, cat, chcon, chgrp, chmod, chown, + chroot, cksum, comm, cp, csplit, cut, date, dd, df, dir, dircolors, + dirname, du, echo, env, expand, expr, factor, false, fmt, fold, groups, + head, hostid, id, install, join, link, ln, logname, ls, md5sum, mkdir, + mkfifo, mknod, mktemp, mv, nice, nl, nohup, nproc, numfmt, od, paste, + pathchk, pinky, pr, printenv, printf, ptx, pwd, readlink, realpath, rm, + rmdir, runcon, seq, sha1sum, sha224sum, sha256sum, sha384sum, + sha512sum, shred, shuf, sleep, sort, split, stat, stdbuf, stty, sum, + sync, tac, tail, tee, test, timeout, touch, tr, true, truncate, tsort, + tty, uname, unexpand, uniq, unlink, users, vdir, wc, who, whoami, and + yes</seg> <seg>libstdbuf.so</seg> <seg>/usr/libexec/coreutils</seg> </seglistitem> @@ -174,11 +175,22 @@ sed -i s/\"1\"/\"8\"/1 /usr/share/man/man8/chroot.8</userinput></screen> <?dbfo list-presentation="list"?> <?dbhtml list-presentation="table"?> + <varlistentry id="base32"> + <term><command>base32</command></term> + <listitem> + <para>Encodes and decodes data according to the base32 specification + (RFC 4648)</para> + <indexterm zone="ch-system-coreutils base64"> + <primary sortas="b-base64">base64</primary> + </indexterm> + </listitem> + </varlistentry> + <varlistentry id="base64"> <term><command>base64</command></term> <listitem> - <para>Encodes and decodes data according to the base64 (RFC 3548) - specification</para> + <para>Encodes and decodes data according to the base64 specification + (RFC 4648)</para> <indexterm zone="ch-system-coreutils base64"> <primary sortas="b-base64">base64</primary> </indexterm> |